forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"private": true,
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.5",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"chalk": "^1.1.3",
"eslint": "^2.13.1",
"eslint-plugin-babel": "^3.3.0",
"fbjs-scripts": "^0.7.1",
"flow-bin": "^0.27.0",
"glob": "^7.0.4",
"graceful-fs": "^4.1.4",
"lerna": "2.0.0-beta.20",
"minimatch": "^3.0.2",
"mkdirp": "^0.5.1",
"progress": "^1.1.8",
"rimraf": "^2.5.2"
},
"scripts": {
"build-clean": "rm -rf ./packages/*/build",
"build": "node ./scripts/build.js",
"clean": "rm -rf ./packages/*/node_modules; npm run build-clean",
"lint": "eslint .",
"postinstall": "node ./scripts/postinstall.js && node ./scripts/build.js",
"t": "node ./scripts/test.js",
"test": "npm run typecheck && npm run lint && npm run build && npm run t",
"typecheck": "flow check",
"watch": "npm run build; node ./scripts/watch.js"
}
}