-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "redux-action-creator",
"description": "Reduce boilerplate code in your action creators and types",
"author": "Andy Shea <[email protected]>",
"version": "3.0.0",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/andy-shea/redux-action-creator"
},
"homepage": "https://github.com/andy-shea/redux-action-creator",
"keywords": [
"react",
"redux",
"action",
"action-creator",
"universal",
"boilerplate",
"type",
"normalizr"
],
"scripts": {
"test": "cross-env NODE_ENV=test nyc tape ./test/**/*.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prebuild": "npm test",
"build": "babel src -d lib",
"prepublishOnly": "npm run build"
},
"files": [
"lib",
"src"
],
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.1",
"@babel/preset-env": "^7.5.0",
"@babel/register": "^7.4.4",
"babel-plugin-istanbul": "^5.1.4",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"tape": "^4.11.0"
},
"dependencies": {
"detect-node": "^2.0.4",
"normalizr": "^3.4.0"
}
}