-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
63
64
{
"name": "redux-side-effects",
"version": "1.1.1",
"description": "Redux toolset for keeping all the side effects inside your reducers while maintaining their purity.",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"jsnext:main": "src/index.js",
"scripts": {
"build:lib": "./node_modules/.bin/babel src --out-dir lib",
"check": "npm run lint && npm run test",
"lint": "./node_modules/.bin/eslint src/",
"preversion": "npm run check",
"version": "npm run build:lib",
"postversion": "git push && git push --tags",
"prepublish": "npm run build:lib",
"test": "./node_modules/.bin/mocha --require babel-core/register --recursive",
"test:cov": "./node_modules/.bin/babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/salsita/redux-side-effects.git"
},
"keywords": [
"redux",
"side",
"effects",
"reducing",
"impurities",
"hot",
"reload",
"elm"
],
"author": "Tomas Weiss <tomasw@salsitasoft.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/salsita/redux-side-effects/issues"
},
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
},
"homepage": "/~https://github.com/salsita/redux-side-effects#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^3.4.1",
"eslint": "^2.8.0",
"estraverse-fb": "^1.3.1",
"isparta": "^4.0.0",
"mocha": "^2.2.5",
"redux": "^3.4.0",
"sinon": "^1.17.2"
}
}