-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "redux-actions-namespace",
"version": "1.0.1",
"description": "Syntax sugar for using namespaces with redux-actions.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fiberthrone/redux-actions-namespace.git"
},
"keywords": [
"redux",
"actions",
"redux-actions",
"namespace"
],
"author": "Andrei Dotsenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiberthrone/redux-actions-namespace/issues"
},
"homepage": "https://github.com/fiberthrone/redux-actions-namespace#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"rimraf": "^2.6.1"
},
"peerDependencies": {
"redux-actions": "^2.0.3"
}
}