-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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": "reduxerit",
"version": "0.4.2",
"description": "redux utils to generate reducer and actions in a shorter way",
"main": "lib/index.js",
"keywords": [
"react",
"reactjs",
"redux",
"flux"
],
"scripts": {
"build:lib": "babel src --out-dir lib",
"test": "mocha --compilers js:babel-core/register"
},
"author": {
"name": "Jurgo Boemo",
"email": "[email protected]",
"url": "http://jurgo.me/"
},
"repository": {
"type": "git",
"url": "https://github.com/jurgob/reduxerit"
},
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.7",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"dependencies": {
"deepmerge": "^0.2.10"
}
}