forked from PlatziDev/redux-duck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "redux-duck",
"version": "1.0.2",
"description": "Helper function to create Redux modules using the ducks-modular-redux proposal.",
"main": "build/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint lib/index.js",
"prebuild": "npm run lint",
"build": "babel lib --out-dir build",
"pretest": "npm run build",
"test": "babel-node test/index.js | tap-spec",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlatziDev/redux-duck.git"
},
"keywords": [
"redux",
"duck",
"module",
"helper"
],
"author": "Sergio Daniel Xalambrí <[email protected]> (http://sergio.xalambri.com.ar/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PlatziDev/redux-duck/issues"
},
"homepage": "https://github.com/PlatziDev/redux-duck/",
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.7.5",
"babel-core": "6.7.6",
"babel-eslint": "6.0.3",
"babel-plugin-transform-es2015-arrow-functions": "6.5.2",
"babel-plugin-transform-es2015-block-scoping": "6.7.1",
"babel-plugin-transform-es2015-computed-properties": "6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.7.4",
"babel-plugin-transform-es2015-parameters": "6.7.0",
"babel-plugin-transform-es2015-shorthand-properties": "6.5.0",
"babel-plugin-transform-es2015-template-literals": "6.6.5",
"babel-plugin-transform-object-rest-spread": "6.6.5",
"eslint": "2.8.0",
"eslint-config-airbnb": "7.0.0",
"eslint-plugin-jsx-a11y": "0.6.2",
"eslint-plugin-react": "4.3.0",
"tap-spec": "4.1.1",
"tape": "4.5.1"
}
}