-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
52
53
54
55
56
{
"name": "redux-dux",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && mkdir dist && babel ./src/index.js --out-file ./dist/index.js",
"test": "jest",
"docs": "jsdoc2md src/index.js > API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evgeny-t/dux.git"
},
"keywords": [
"redux",
"dux"
],
"author": "Evgeny Timoshenko timoshenko.evgeny@gmail.com",
"license": "GLWTPL",
"bugs": {
"url": "https://github.com/evgeny-t/dux/issues"
},
"homepage": "https://github.com/evgeny-t/dux#readme",
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.get": "^4.4.2",
"lodash.map": "^4.6.0",
"lodash.reduce": "^4.6.0",
"lodash.set": "^4.3.2",
"lodash.snakecase": "^4.1.1",
"redux": "^4.0.0",
"update-js": "^1.7.0"
},
"peerDependencies": {
"redux": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^3.0.0",
"regenerator-runtime": "^0.12.0"
}
}