forked from ngrx/store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "@ngrx/store",
"version": "1.2.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",
"lint": "tslint src/store.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngrx/store.git"
},
"keywords": [
"RxJS",
"Angular2",
"Redux"
],
"author": "Rob Wormald <robwormald@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngrx/store/issues"
},
"homepage": "https://github.com/ngrx/store#readme",
"devDependencies": {
"angular2": "^2.0.0-beta.0",
"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.10"
},
"dependencies": {
"rxjs": "^5.0.0-beta.0"
},
"typings": "./dist/store.d.ts"
}