This repository has been archived by the owner on Jan 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "./scripts/build.sh",
"clean": "lerna clean --yes && rimraf packages/*/es && rimraf packages/*/lib",
"check": "yarn format && yarn lint && yarn test:coverage && yarn flow",
"format": "prettier --write \"packages/*/src/**/*.js\"",
"flow": "flow",
"lint": "eslint packages/*/src/**/*.js",
"release": "git pull --rebase && yarn 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 bootstrap && yarn 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-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"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.57.3",
"jest": "^18.1.0",
"lerna": "^2.5.1",
"prettier": "^1.8.2",
"rimraf": "^2.6.1",
"sinon": "^1.17.7"
}
}