forked from redux-utilities/redux-actions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.8 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
57
58
59
60
61
62
{
"name": "redux-actions",
"version": "0.12.0",
"description": "Flux Standard Action utlities for Redux",
"main": "lib/index.js",
"scripts": {
"build:commonjs": "babel src --out-dir lib --ignore *-test.js",
"build:umd": "cross-env NODE_ENV=development webpack",
"build:umd:min": "cross-env NODE_ENV=production webpack",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"clean": "rimraf lib",
"lint": "esw src webpack.config --color",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "npm run lint -- --watch",
"prepublish": "npm run lint && npm run test && npm run build",
"test": "mocha --compilers js:babel-register src/**/*-test.js",
"test:watch": "npm run test -- --watch src/**/*-test.js"
},
"files": [
"lib",
"dist"
],
"keywords": [
"flux",
"redux",
"fsa",
"actions"
],
"author": "Andrew Clark <[email protected]>",
"bugs": {
"url": "https://github.com/acdlite/redux-actions/issues"
},
"homepage": "https://github.com/acdlite/redux-actions",
"repository": {
"type": "git",
"url": "https://github.com/acdlite/redux-actions.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.1.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.0.0",
"cross-env": "^2.0.0",
"eslint": "^2.8.0",
"eslint-config-airbnb-base": "^1.0.3",
"eslint-plugin-import": "^1.5.0",
"eslint-watch": "^2.1.13",
"flux-standard-action": "^0.6.0",
"mocha": "^2.2.5",
"rimraf": "^2.5.3",
"webpack": "^1.13.1"
},
"dependencies": {
"lodash": "^4.13.1",
"reduce-reducers": "^0.1.0"
}
}