forked from ngrx/store
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "ngrx-store-fxck",
"version": "0.0.1",
"description": "RxJS powered Redux for Angular2 apps",
"main": "./dist/store.js",
"scripts": {
"test": "npm run build_test && jasmine",
"clean_test": "rm -rf tmp/",
"build_test": "npm run clean_test && tsc -p spec",
"build_dist": "rm -rf dist && tsc",
"prepublish": "npm run build_dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fxck/store.git"
},
"keywords": [
"RxJS",
"Angular2",
"Redux"
],
"author": "Rob Wormald <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fxck/store/issues"
},
"homepage": "https://github.com/fxck/store#readme",
"devDependencies": {
"angular2": "^2.0.0-alpha.53",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.13",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"lodash": "^3.10.1",
"reflect-metadata": "^0.1.2",
"typescript": "^1.7.3",
"zone.js": "0.5.8"
},
"dependencies": {
"rxjs": "^5.0.0-alpha.14"
},
"typings": "./dist/store.d.ts"
}