-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "redux-action-namespacer",
"description": "Provides a way to define your Redux action types in a structured way.",
"keywords": [
"redux-action-namespacer,redux,action type,namespace,name space"
],
"scripts": {
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch --config webpack.config-dev.js",
"test": "WEBPACK_ENV=test mocha-webpack",
"build": "WEBPACK_ENV=build webpack --config webpack.config-build.js"
},
"license": "MIT",
"version": "1.0.2",
"bugs": "https://github.com/joetidee/redux-action-namespacer/issues",
"repository": {
"type": "git",
"url": "https://github.com/joetidee/redux-action-namespacer"
},
"main": "lib/redux-action-namespacer.js",
"engines": {
"node": ">=4.2.4"
},
"files": [
"lib/"
],
"module": "lib/",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"chai": "^3.5.0",
"chai-subset": "^1.4.0",
"mocha": "^3.2.0",
"mocha-webpack": "^0.7.0",
"source-map-support": "^0.4.11",
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4"
}
}