-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.66 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
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=8",
"yarn": ">=1.3.2"
},
"scripts": {
"add-contributors": "all-contributors add",
"build": "node ./scripts/build",
"prewatch": "yarn build",
"watch": "node ./scripts/watch",
"lint": "eslint . --fix",
"flow": "flow",
"publish": "./scripts/publish.sh",
"fmt": "prettier --write \"**/*.{md,js,json}\"",
"postinstall": "yarn build",
"test": "jest --watch --coverage",
"test:watch": "jest --watch",
"test:cov": "jest --coverage --ci --runInBand",
"test:ci": "yarn lint && yarn flow check && yarn test:cov && yarn add:coveralls",
"add:coveralls": "cat ./coverage/lcov.info | coveralls",
"check": "yarn flow && yarn lint",
"validate": "yarn flow && yarn lint && yarn test:cov"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-flow": "7.0.0",
"all-contributors-cli": "6.8.1",
"babel-jest": "24.8.0",
"babel-log": "2.0.0",
"babel-plugin-tester": "7.0.1",
"coveralls": "3.0.5",
"eslint": "6.1.0",
"eslint-config-precure": "4.18.0",
"flow-bin": "0.104.0",
"globby": "10.0.1",
"husky": "3.0.2",
"jest": "24.8.0",
"jest-in-case": "1.0.2",
"lerna": "3.16.4",
"lint-staged": "9.2.1",
"mkdirp": "0.5.1",
"path-exists": "4.0.0",
"prettier": "1.18.2",
"pretty-format": "24.8.0",
"rimraf": "2.6.3",
"strip-ansi": "5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}