forked from angular-redux/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.94 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@angular-redux/store",
"version": "6.0.1",
"description": "Angular 2 bindings for Redux",
"main": "./lib/index.js",
"scripts": {
"prebuild": "rimraf ./lib; npm uninstall @types/chai @types/sinon-chai;",
"postbuild": "npm install @types/[email protected] @types/[email protected]; rimraf \"src/**/*.ngfactory.ts\"",
"build": "ngc -p tsconfig.json;",
"test": "rimraf coverage && npm run lint && npm run cover",
"mocha": "mocha --opts mocha.opts",
"lint": "tslint 'src/**/*.ts' 'examples/counter/**.ts' --exclude 'examples/counter/node_modules'",
"cover": "NODE_ENV=test nyc npm run mocha",
"prepublish": "npm test && npm run build"
},
"typings": "./lib/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/common": "^2.4.1",
"@angular/compiler": "^2.4.1",
"@angular/compiler-cli": "^2.4.1",
"@angular/core": "^2.4.1",
"@angular/platform-browser": "^2.4.1",
"@angular/platform-browser-dynamic": "^2.4.1",
"@angular/platform-server": "^2.4.1",
"@types/chai": "^3.4.31",
"@types/es6-shim": "0.0.30",
"@types/mocha": "^2.2.30",
"@types/node": "^6.0.36",
"@types/sinon": "^1.16.28",
"@types/sinon-chai": "^2.7.26",
"awesome-typescript-loader": "^2.2.1",
"chai": "^3.5.0",
"es6-shim": "^0.35.0",
"mocha": "^2.4.5",
"nyc": "^8.1.0",
"proxyquire": "^1.7.10",
"redux": "^3.5.0",
"reflect-metadata": "0.1.3",
"rimraf": "^2.5.2",
"rxjs": "^5.0.1",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"symbol-observable": "^1.0.1",
"ts-node": "1.3.0",
"tslint": "^3.11.0",
"typescript": "2.0.2",
"zone.js": "^0.7.2"
},
"peerDependencies": {
"@angular/core": "^2.4.0",
"redux": "^3.5.0"
},
"nyc": {
"exclude": [
"examples",
"node_modules",
"**/*.spec.ts",
"lib",
"docs",
"coverage",
".nyc_output"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"check-coverage": true,
"lines": 60,
"branches": 60,
"functions": 60,
"statements": 60
}
}