forked from CirclonGroup/angular-tree-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.48 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "angular2-tree-component",
"version": "3.0.0",
"description": "A simple yet powerful tree component for Angular2",
"author": "Adam Klein <adam@500tech.com>",
"homepage": "https://github.com/500tech/angular2-tree-component",
"license": "MIT",
"main": "dist/angular2-tree-component.umd.js",
"jsnext:main": "dist/angular2-tree-component.js",
"module": "dist/angular2-tree-component.js",
"types": "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",
"lint": "tslint lib/**/*.ts",
"rollup": "rollup -c rollup.config.js dist/angular2-tree-component.js > dist/angular2-tree-component.umd.js",
"build": "npm run lint && npm run clean:typescript && ngc && npm run rollup",
"example:cli": "ngc && cp -rf dist example/cli/node_modules/angular2-tree-component/ && cd example/cli && ng serve",
"example:cli:build": "cd example/cli && ng build --aot"
},
"files": [
"dist/"
],
"readme": "https://github.com/500tech/angular2-tree-component/blob/master/README.md",
"contributors": [
"Adam Klein <adam@500tech.com>"
],
"peerDependencies": {
"@angular/common": "^2.0.0",
"@angular/core": "^2.0.0"
},
"dependencies": {
"lodash": "^4.6.1",
"mobx": "3.1.0",
"ng2-mobx": "1.2.2"
},
"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/jasmine": "2.5.38",
"@types/lodash": "^4.14.52",
"@types/node": "^6.0.38",
"@types/rx": "2.5.34",
"@types/webpack": "^1.12.29",
"codelyzer": "2.0.0-beta.4",
"core-js": "^2.4.0",
"lodash": "^4.6.1",
"rimraf": "^2.5.1",
"rollup": "^0.41.4",
"rxjs": "^5.0.0",
"tslint": "4.4.2",
"typedoc": "^0.3.12",
"typescript": "^2.1.4",
"zone.js": "^0.7.2"
},
"repository": "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"
}
}