forked from angular-redux/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "ng2-redux",
"version": "3.0.5",
"description": "Angular 2 bindings for Redux",
"main": "./lib/index.js",
"scripts": {
"build": "npm run typings && rimraf ./lib; tsc; rimraf ./lib/___tests___",
"test": "npm run typings && npm run lint && npm run mocha",
"typings": "rimraf ./typings && typings install",
"mocha": "ts-node ./node_modules/mocha/bin/_mocha --opts ./src/___tests___/mocha.opts",
"lint": "tslint 'src/**/*.ts' 'examples/counter/**.ts --exclude 'examples/counter/node_modules"
},
"typings": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wbuchwalter/ng2-redux.git"
},
"keywords": [
"Redux",
"Flux",
"Angular"
],
"author": "William Buchwalter <wbuchwalter@gmail.com> (http://github.com/wbuchwalter)",
"contributors": [
{
"name": "Evan Schultz",
"email": "evan@rangle.io",
"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/ng2-redux/issues"
},
"homepage": "https://github.com/angular-redux/ng2-redux#readme",
"devDependencies": {
"@angular/core": "2.0.0-rc.1",
"chai": "^3.5.0",
"es6-shim": "^0.35.0",
"expect": "^1.8.0",
"mocha": "^2.4.5",
"redux": "^3.4.0",
"reflect-metadata": "0.1.3",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.6",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"ts-loader": "^0.8.1",
"ts-node": "^0.5.5",
"tslint": "^3.11.0",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"zone.js": "0.6.12"
},
"peerDependencies": {
"rxjs": "5.0.0-beta.6",
"@angular/core": "2.0.0-rc.1",
"typings": "^1.0.4",
"zone.js": "0.6.12"
},
"dependencies": {}
}