-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "redux-saga-rxjs",
"version": "0.3.0",
"description": "Saga pattern for Redux implemented using rxjs",
"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/tomkis1/redux-saga-rxjs.git"
},
"keywords": [
"redux",
"saga",
"rxjs"
],
"author": "Tomas Weiss <tomas.weiss2@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomkis1/redux-saga-rxjs/issues"
},
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/tomkis1/redux-saga-rxjs#readme",
"peerDependencies": {
"rxjs": "^5.0.0-beta.2"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.1.0",
"estraverse-fb": "^1.3.1",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"redux": "^3.3.1",
"rxjs": "^5.0.0-beta.2",
"sinon": "^1.17.3"
}
}