forked from facebook/react-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.23 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
67
68
69
70
71
72
73
74
75
{
"dependencies": {
"adm-zip": "^0.4.7",
"babel-core": "6.3.21",
"babel-eslint": "6.0.4",
"babel-jest": "6.0.1",
"babel-loader": "6.2.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"child-process-promise": "^2.2.1",
"classnames": "2.2.1",
"cli-spinners": "^1.0.0",
"clipboard-js": "^0.3.3",
"es6-symbol": "3.0.2",
"eslint": "2.10.2",
"eslint-plugin-react": "5.1.1",
"fbjs": "0.5.1",
"fbjs-scripts": "0.7.0",
"flow-bin": "0.23.0",
"fs-extra": "^3.0.1",
"gh-pages": "^1.0.0",
"immutable": "3.7.6",
"jest-cli": "0.9.0-fb2",
"json-loader": "0.5.4",
"log-update": "^2.0.0",
"node-libs-browser": "0.5.3",
"object-assign": "4.0.1",
"raw-loader": "^0.5.1",
"react": "15.4.2",
"react-addons-create-fragment": "15.4.2",
"react-color": "^2.11.7",
"react-dom": "15.4.2",
"react-portal": "^3.1.0",
"webpack": "1.12.9"
},
"license": "BSD-3-Clause",
"repository": "facebook/react-devtools",
"scripts": {
"build:extension": "npm run build:extension:chrome && npm run build:extension:firefox",
"build:extension:chrome": "node ./shells/chrome/build",
"build:extension:firefox": "node ./shells/firefox/build",
"build:standalone": "cd packages/react-devtools-core && npm run build",
"deploy": "cd ./shells/theme-preview && ./build.sh && gh-pages -d .",
"lint": "eslint .",
"postinstall": "lerna bootstrap",
"test": "node --harmony ./node_modules/.bin/jest",
"test:chrome": "node ./shells/chrome/test",
"test:firefox": "node ./shells/firefox/test",
"test:standalone": "cd packages/react-devtools && npm start",
"typecheck": "flow check"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"modulePathIgnorePatterns": [
"<rootDir>/shells"
]
},
"devDependencies": {
"chrome-launch": "^1.1.4",
"firefox-profile": "^1.0.2",
"lerna": "2.0.0-beta.36",
"web-ext": "^1.10.1"
}
}