-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "angular2-active-record",
"version": "0.1.5",
"description": "Helper library for handling connect api in Angular 2",
"repository": {
"type": "git",
"url": "git+https://github.com/dieuhd/angular2-active-record.git"
},
"scripts": {
"dev": "tsc --watch",
"typings": "typings install",
"build": "tsc --declaration",
"prepublish": "tsc",
"postinstall": "typings install"
},
"keywords": [
"angular",
"angular2",
"active record",
"orm"
],
"author": "dieuhd",
"license": "MIT",
"bugs": {
"url": "https://github.com/dieuhd/angular2-active-record/issues"
},
"main": "angular2-active-record.js",
"typings": "./angular2-active-record.d.ts",
"homepage": "https://github.com/dieuhd/angular2-active-record#readme",
"dependencies": {
"@angular/common": "~2.0.0-rc.1",
"@angular/compiler": "~2.0.0-rc.1",
"@angular/core": "~2.0.0-rc.1",
"@angular/http": "~2.0.0-rc.1",
"@angular/platform-browser": "~2.0.0-rc.1",
"@angular/platform-browser-dynamic": "~2.0.0-rc.1",
"systemjs": "0.19.27",
"core-js": "^2.4.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.2.0",
"typescript": "^1.8.10",
"typings":"^1.0.4"
}
}