-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1014 Bytes
/
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
{
"name": "redux-dynamix",
"version": "0.1.3",
"description": "Tool for dynamic manipulation with reducers and state tree in redux-based applications.",
"main": "dist/build.js",
"scripts": {
"start": "webpack",
"build": "webpack -p",
"test": "ava tests/**/*.js --verbose",
"test-w": "ava -w tests/**/*.js",
"prepublish": "npm build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jake-daniels/redux-dynamix.git"
},
"keywords": [
"redux",
"reducer",
"dynamic"
],
"author": "Jakub Šoltés, <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jake-daniels/redux-dynamix/issues"
},
"homepage": "https://github.com/jake-daniels/redux-dynamix#readme",
"devDependencies": {
"ava": "^0.17.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"webpack": "^1.14.0"
}
}