-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "ng2redux",
"description": "An Angular 2 bindings for Redux",
"scripts": {
"test": "npm run clean && tsc && karma start",
"test-watch": "tsc && karma start --no-single-run --auto-watch",
"commit": "npm run prepublish && npm test && git add -A && git-cz",
"prepublish": "typings install && tsc && node make.js",
"release": "semantic-release pre && npm publish && semantic-release post",
"clean": "rimraf src/**/*.js src/**/*.js.map src/**/*.d.ts tests/**/*.js tests/**/*.js.map tests/**/*.d.ts",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"angular",
"angular2",
"angular 2",
"angular 2 redux",
"redux",
"ng2",
"ng2 redux",
"ng2redux"
],
"repository": {
"type": "git",
"url": "https://github.com/forforeach/ng2redux.git"
},
"author": "Dima Kuzmich",
"license": "MIT",
"bugs": {
"url": "https://github.com/forforeach/ng2redux/issues"
},
"main": "ng2redux.js",
"typings": "./ng2redux.d.ts",
"homepage": "https://github.com/forforeach/ng2redux",
"devDependencies": {
"@angular/core": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"core-js": "^2.4.0",
"commitizen": "^2.7.6",
"cz-conventional-changelog": "^1.1.5",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-typescript-preprocessor": "0.0.21",
"npm-run": "^3.0.0",
"redux": "3.5.2",
"reflect-metadata": "0.1.3",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.6",
"semantic-release": "^4.3.5",
"systemjs": "0.19.27",
"systemjs-builder": "^0.15.14",
"typescript": "1.8.9",
"typings":"^1.0.4",
"zone.js": "0.6.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}