-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.69 KB
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
{
"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": "typings install && tsc",
"lint": "tslint src/*.ts",
"test": "karma start",
"test:ci": "karma start --singleRun",
"prepublish": "npm run build",
"postinstall": "typings install"
},
"keywords": [
"Angular2",
"ng2",
"API",
"Http",
"REST",
"service",
"resource"
],
"author": "Tomasz Bak <t.bak@selleo.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tb/ng2-api"
},
"bugs": {
"url": "https://github.com/tb/ng2-api/issues"
},
"devDependencies": {
"@angular/common": "^2.0.0-rc.0",
"@angular/compiler": "^2.0.0-rc.0",
"@angular/core": "^2.0.0-rc.0",
"@angular/http": "^2.0.0-rc.0",
"@angular/platform-browser": "^2.0.0-rc.0",
"@angular/platform-browser-dynamic": "^2.0.0-rc.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"jasmine-core": "^2.4.1",
"karma": "1.1.2",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "0.1.2",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.6",
"ts-helpers": "^1.1.1",
"ts-loader": "^0.8.1",
"tslint": "^3.9.0",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"webpack": "^1.12.13",
"zone.js": "^0.6.17"
},
"peerDependencies": {
"@angular/common": "^2.0.0-rc.0",
"@angular/core": "^2.0.0-rc.0",
"@angular/http": "^2.0.0-rc.0"
}
}