-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "ng2-data",
"version": "0.2.1",
"description": "Convential HTTP client for Model Data in Angular 2",
"repository": {
"type": "git",
"url": "git+https://github.com/raghunat/ng2-data.git"
},
"main": "src/store.service",
"scripts": {
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"postinstall": "typings install",
"test": "./node_modules/karma/bin/karma start"
},
"keywords": [
"angular",
"@angular",
"data",
"orm",
"http"
],
"author": "raghunat",
"license": "MIT",
"bugs": {
"url": "https://github.com/raghunat/ng2-data/issues"
},
"typings": "./ng2-data.d.ts",
"homepage": "https://github.com/raghunat/ng2-data#readme",
"dependencies": {
"@angular/common": "^2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "^2.0.0-rc.1",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"zone.js": "0.6.6"
},
"devDependencies": {
"body-parser": "^1.15.0",
"concurrently": "^2.0.0",
"cors": "^2.7.1",
"express": "^4.13.4",
"glob": "^7.0.3",
"jasmine-core": "^2.4.1",
"jasmine-spec-reporter": "^2.4.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-mocha-reporter": "^2.0.0",
"lite-server": "^2.1.0",
"systemjs": "~0.19.24",
"typescript": "^1.8.10",
"typings": "^0.8.1"
}
}