-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "store-saga",
"version": "1.0.0-beta.11",
"description": "An Rx implementation of redux-saga for @ngrx/store",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./tmp && rm -rf ./dist",
"pretest": "typings install && npm run clean && tsc -p spec",
"test": "istanbul cover -x '**/spec/**' jasmine",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "cp ./{README.md,package.json} ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikeRyan52/store-saga.git"
},
"keywords": [
"redux",
"saga",
"ngrx",
"store",
"rxjs"
],
"author": "Mike Ryan",
"license": "MIT",
"bugs": {
"url": "https://github.com/MikeRyan52/store-saga/issues"
},
"homepage": "https://github.com/MikeRyan52/store-saga#readme",
"peerDependencies": {
"rxjs": "5.0.0-beta.6",
"@angular/core": "^2.0.0-rc.0",
"@ngrx/store": "^1.5.0"
},
"devDependencies": {
"@ngrx/store": "^1.5.0",
"@angular/core": "^2.0.0-rc.0",
"zone.js": "^0.6.6",
"core-js": "^2.1.3",
"istanbul": "^0.4.2",
"jasmine": "^2.4.1",
"reflect-metadata": "^0.1.2",
"rxjs": "5.0.0-beta.6",
"ts-node": "^0.5.5",
"typescript": "^1.8.10",
"typings": "^0.7.9"
}
}