This repository was archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "collection-json-angular",
"version": "1.0.0-beta.14",
"main": "index.js",
"types": "index.d.ts",
"description": "Implementation of the collection-json.ts library for Angular",
"scripts": {
"clean": "rimraf ./dist",
"copy": "copyfiles package.json README.md LICENSE dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"pack": "npm run build && npm run copy && cd dist && npm pack",
"upload": "npm run build && npm run copy && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avatao/collection-json-angular.git"
},
"keywords": [
"collection-json-angular",
"collection-json",
"angular",
"typescript"
],
"author": "Avatao",
"contributors": [
"Balazs Rostas <balazs.rostas@avatao.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/avatao/collection-json-angular/issues"
},
"homepage": "https://github.com/avatao/collection-json-angular#readme",
"devDependencies": {
"@angular/common": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"copyfiles": "^1.2.0",
"rimraf": "^2.6.1",
"tslint": "~5.9.1",
"typescript": "~2.7.2",
"url-parse": "^1.1.9",
"zone.js": "^0.8.26"
},
"dependencies": {
"collection-json-base": "1.0.0-beta.25",
"rxjs": "^6.1.0",
"rxjs-tslint": "^0.1.3"
},
"peerDependencies": {
"@angular/common": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"rxjs": "^6.1.0",
"zone.js": "^0.8.26"
}
}