-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.87 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
{
"name": "@nationalbankbelgium/ngrx-store",
"version": "1.0.1",
"description": "RxJS powered Redux for AngularJS apps",
"main": "./index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc && npm run copy_package",
"copy_package": "cpy LICENSE package.json README.md dist",
"lint": "tslint src/**.ts",
"tsc": "tsc"
},
"keywords": [
"RxJS",
"AngularJS",
"Redux"
],
"author": {
"email": "[email protected]",
"name": "Dubois Sebastien",
"url": "https://www.nbb.be"
},
"contributors": [
{
"email": "[email protected]",
"name": "Dubois Sebastien",
"url": "https://www.nbb.be"
},
{
"email": "[email protected]",
"name": "Cedric Namotte",
"url": "https://www.nbb.be"
},
{
"email": "[email protected]",
"name": "Alexis Georges",
"url": "https://www.nbb.be"
},
{
"email": "[email protected]",
"name": "Christopher Cortes",
"url": "https://www.nbb.be"
}
],
"license": "EUPL-1.1",
"bugs": {
"url": "https://github.com/NationalBankBelgium/ngrx-store-ng1/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NationalBankBelgium/ngrx-store-ng1.git"
},
"homepage": "https://github.com/NationalBankBelgium/ngrx-store-ng1",
"dependencies": {
"@types/angular": ">= 1.5.0 < 2",
"angular": ">= 1.5.0 < 2",
"rxjs": "^5.4.0"
},
"devDependencies": {
"@types/core-js": "0.9.43",
"@types/jasmine": "2.6.0",
"@types/node": "6.0.88",
"cpy-cli": "^1.0.1",
"core-js": "^2.4.1",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"rimraf": "^2.5.4",
"tslint": "^4.4.2",
"typescript": "^2.3.0",
"zone.js": "^0.7.6"
},
"typings": "./index.d.ts",
"engines": {
"node": ">=6.11.0",
"npm": ">=5.3.0"
}
}