-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.42 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "./scripts/build.sh",
"clean": "lerna clean --yes && rimraf packages/*/es && rimraf packages/*/lib",
"check": "npm run lint && npm run test:coverage && npm run flow",
"format": "prettier --write \"**/**.js\"" ,
"flow": "flow",
"lint": "eslint packages/*/src/**/*.js",
"release": "git pull --rebase && npm run build && lerna publish",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:coverage": "cross-env BABEL_ENV=commonjs jest --coverage",
"watch": "yarn test -- --watch",
"setup": "yarn run clean && yarn run bootstrap && yarn run build"
},
"jest": {
"rootDir": "packages",
"testPathIgnorePatterns": [
"/mocks/",
"/lib/"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"codeclimate-test-reporter": "^0.4.0",
"cross-env": "^5.0.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"jest": "^19.0.0",
"lerna": "^2.5.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.1"
}
}