-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "redux-spork",
"version": "0.0.19",
"repository": "[email protected]:folio-sec/redux-spork.git",
"author": "Daisuke Mino <[email protected]>",
"license": "Apache-2.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepublish": "yarn build",
"build": "rm -rf lib && yarn build:babel && yarn build:type",
"build:babel": "yarn babel -d lib --ignore *.test.js src",
"build:type": "flow-copy-source src lib",
"pretest": "yarn build",
"test": "yarn test:lint && yarn test:format && jest",
"test:lint": "yarn eslint src __tests__",
"test:format": "prettier -l src/** __tests__/**",
"format": "prettier --write src/** __tests__/**"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.70.0",
"flow-copy-source": "^1.3.0",
"flow-typed": "^2.4.0",
"jest": "21.2.1",
"prettier": "^1.12.1",
"redux": "^4.0.0"
}
}