forked from CirclonGroup/angular-tree-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.31 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
{
"name": "angular2-tree-component",
"version": "2.7.0",
"description": "A simple yet powerful tree component for Angular2",
"author": "Adam Klein <[email protected]>",
"homepage": "https://github.com/500tech/angular2-tree-component",
"license": "MIT",
"main": "dist/angular2-tree-component.js",
"typings": "dist/angular2-tree-component.d.ts",
"keywords": [
"angular2",
"tree",
"angular2-tree",
"ng2",
"ng2-tree"
],
"scripts": {
"doc": "typedoc --module commonjs --out doc lib/defs/api.ts",
"test": "karma start",
"clean": "rimraf node_modules && npm run clean:typescript && npm cache clean",
"clean:typescript": "rimraf dist",
"build": "ngc",
"example:webpack": "npm run build && cp -rf dist example/webpack/node_modules/angular2-tree-component/ && cd example/webpack && npm start",
"example:cli": "npm run build && cp -rf dist example/cli/node_modules/angular2-tree-component/ && cd example/cli && ng serve",
"example:webpack:build": "cd example/webpack && npm run build"
},
"files": [
"dist/"
],
"readme": "https://github.com/500tech/angular2-tree-component/blob/master/README.md",
"contributors": [
"Adam Klein <[email protected]>"
],
"peerDependencies": {
"@angular/core": "^2.0.0",
"@angular/common": "^2.0.0"
},
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"@angular/common": "^2.3.0",
"@angular/compiler": "^2.3.0",
"@angular/compiler-cli": "^2.3.0",
"@angular/core": "^2.3.0",
"@angular/http": "^2.3.0",
"@angular/platform-browser": "^2.3.0",
"@angular/platform-browser-dynamic": "^2.3.0",
"@angular/platform-server": "^2.3.0",
"@types/core-js": "0.9.34",
"@types/jasmine": "2.5.38",
"@types/lodash": "4.14.40",
"@types/node": "^6.0.38",
"@types/rx": "2.5.34",
"@types/webpack": "^1.12.29",
"core-js": "^2.4.0",
"lodash": "^4.6.1",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.1",
"rxjs": "5.0.0-rc.4",
"typedoc": "^0.3.12",
"typescript": "^2.1.4",
"zone.js": "^0.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/500tech/angular2-tree-component.git"
},
"bugs": {
"url": "https://github.com/500tech/angular2-tree-component/issues"
},
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
}
}