forked from ghidoz/angular2-jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.3 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
78
79
80
81
82
83
84
85
86
87
{
"name": "angular2-jsonapi",
"version": "3.5.1",
"description": "A lightweight Angular 2 adapter for JSON API",
"scripts": {
"build": "rimraf dist src/compiled && tslint src/**/*.ts && ngc",
"lint": "tslint src/**/*.ts",
"pretest": "npm run build",
"test": "karma start",
"prepublish": "ngc",
"ngc": "ngc",
"servetest": "npm run pretest & karma start karma.dev.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ghidoz/angular2-jsonapi"
},
"author": {
"name": "Daniele Ghidoli",
"url": "http://danieleghidoli.it"
},
"keywords": [
"angular",
"angular2",
"json",
"jsonapi",
"api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ghidoz/angular2-jsonapi/issues"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"dependencies": {
"@types/qs": "^6.5.0",
"lodash": "^4.16.4",
"moment": "^2.15.2",
"qs": "^6.5.0"
},
"peerDependencies": {
"@angular/http": "2.4.9",
"@angular/core": "2.4.9",
"reflect-metadata": "^0.1.3",
"rxjs": "5.2.0"
},
"devDependencies": {
"@angular/common": "2.4.9",
"@angular/compiler": "2.4.9",
"@angular/compiler-cli": "2.4.9",
"@angular/core": "2.4.9",
"@angular/http": "2.4.9",
"@angular/platform-browser": "2.4.9",
"@angular/platform-browser-dynamic": "2.4.9",
"@angular/platform-server": "2.4.9",
"@types/jasmine": "2.5.43",
"@types/lodash": "^4.14.37",
"@types/reflect-metadata": "0.0.5",
"@types/selenium-webdriver": "^3.0.0",
"codelyzer": "~3.1.2",
"core-js": "^2.4.1",
"coveralls": "^2.11.14",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "^0.0.30",
"karma-webpack": "^2.0.3",
"phantomjs-prebuilt": "2.1.14",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.4",
"rxjs": "5.4.2",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"ts-loader": "^2.0.1",
"tslint": "^4.0.2",
"typescript": "~2.2.1",
"webpack": "2.3.3",
"zone.js": "^0.7.7"
},
"engines": {
"node": ">=0.8.0"
}
}