forked from angular-redux/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@angular-redux/store",
"version": "6.5.7",
"description": "Angular 2 bindings for Redux",
"main": "./lib/src/index.js",
"scripts": {
"prebuild": "rimraf ./lib",
"build": "npm run build:src && npm run build:testing",
"build:src": "ngc -p tsconfig.build.json",
"build:testing": "ngc -p tsconfig.testing.json",
"lint": "tslint 'src/**/*.ts'",
"prepublish": "npm run lint && npm run build && npm test",
"test": "nyc node tests.js",
"test:watch": "nodemon tests.js -w src -w testing -e ts",
"ci": "npm run lint && npm run build && npm test",
"predoc": "rm -rf docs",
"doc": "typedoc --out docs --excludeExternals --excludePrivate --excludeNotExported -theme minimal --name @angular-redux/store --mode file --module commonjs --tsconfig tsconfig.docs.json"
},
"typings": "./lib/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/angular-redux/store.git"
},
"keywords": [
"redux",
"ng2",
"angular2",
"angular"
],
"author": "William Buchwalter <[email protected]> (http://github.com/wbuchwalter)",
"contributors": [
{
"name": "Evan Schultz",
"email": "[email protected]",
"url": "https://github.com/e-schultz"
},
{
"name": "Michael Bennett",
"url": "https://github.com/bennett000"
},
{
"name": "Seth Davenport",
"url": "https://github.com/SethDavenport"
},
{
"name": "Cosmin Ronnin",
"url": "https://github.com/kosz"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/angular-redux/store/issues"
},
"homepage": "https://github.com/angular-redux/store#readme",
"devDependencies": {
"@angular/animations": "^4.1.0",
"@angular/common": "^4.1.0",
"@angular/compiler": "^4.1.0",
"@angular/compiler-cli": "^4.1.0",
"@angular/core": "^4.1.0",
"@angular/http": "^4.1.0",
"@angular/platform-browser": "^4.1.0",
"@angular/platform-browser-dynamic": "^4.1.0",
"@angular/platform-server": "^4.1.0",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.36",
"core-js": "^2.4.1",
"jasmine": "^2.5.3",
"nodemon": "^1.11.0",
"nyc": "^10.2.0",
"redux": "^3.5.0",
"reflect-metadata": "0.1.3",
"rimraf": "^2.5.2",
"rxjs": "^5.0.1",
"symbol-observable": "^1.0.1",
"ts-node": "^3.0.2",
"tsconfig-paths": "^2.2.0",
"tslint": "^5.1.0",
"typedoc": "^0.6.0",
"typescript": "^2.4.1",
"zone.js": "^0.8.4"
},
"peerDependencies": {
"@angular/core": "^2.4.0 || ^4.0.0",
"redux": "^3.5.0"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec.ts"
],
"include": [
"src/**/*.ts",
"testing/**/*.ts"
]
}
}