forked from tb/ng2-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "ng2-api",
"version": "0.5.0",
"description": "Angular2 API services",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf typings src/*.{js,d.ts}",
"build": "tsc -d",
"lint": "tslint src/*.ts",
"test": "karma start",
"test:ci": "karma start --singleRun",
"prepublish": "npm run build"
},
"keywords": [
"Angular2",
"ng2",
"API",
"Http",
"REST",
"service",
"resource"
],
"author": "Tomasz Bak <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tb/ng2-api"
},
"bugs": {
"url": "https://github.com/tb/ng2-api/issues"
},
"devDependencies": {
"@angular/common": "7.1.3",
"@angular/compiler": "7.1.3",
"@angular/core": "7.1.3",
"@angular/http": "7.1.3",
"@angular/platform-browser": "7.1.3",
"@angular/platform-browser-dynamic": "7.1.3",
"@types/bluebird": "^3.5.5",
"@types/jasmine": "2.8.2",
"@types/node": "10.0.4",
"@types/webpack": "^3.0.13",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"jasmine-core": "2.99.*",
"karma": "2.0.*",
"karma-chrome-launcher": "2.2.*",
"karma-jasmine": "1.1.*",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "1.7.0",
"reflect-metadata": "0.1.2",
"rimraf": "^2.5.2",
"rxjs": "6.3.3",
"rxjs-compat": "6.1.*",
"ts-helpers": "^1.1.1",
"ts-loader": "^0.8.1",
"tslint": "5.10.0",
"typescript": "3.1.*",
"webpack": "^1.12.13",
"zone.js": "0.8.26"
},
"peerDependencies": {
"@angular/common": "7.*",
"@angular/core": "7.*",
"@angular/http": "7.*"
}
}