-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "wof-ui",
"version": "1.0.0",
"description": "World of Fluxcraft UI",
"repository": {
"type": "git",
"url": "https://github.com/cloudnativego/wof-ui.git"
},
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"watch": "webpack-dev-server"
},
"keywords": [],
"author": "Cloud Native Go",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.7.2",
"babel-jest": "^11.0.1",
"babel-loader": "^6.2.4",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"jest-cli": "^11.0.1",
"react-addons-test-utils": "^15.0.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.8.3"
},
"dependencies": {
"alt": "^0.18.3",
"alt-container": "^1.0.2",
"alt-utils": "^1.0.0",
"axios": "^0.9.1",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js",
"jsx"
],
"moduleFileExtensions": [
"",
"js",
"json",
"jsx",
"es6"
]
}
}