forked from leovo2708/ngx-treeview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.81 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ngx-treeview",
"version": "1.1.0",
"license": "MIT",
"description": "An Angular treeview component with checkbox",
"scripts": {
"start": "ng serve",
"lint": "ng lint",
"test": "ng test",
"test-coverage": "ng test --code-coverage",
"test-ci": "ng test --watch=false --code-coverage --single-run=true",
"e2e": "ng e2e",
"ci": "npm run lint && npm run test-ci && npm run e2e",
"prebuild:lib": "rimraf tmp dist/lib",
"build:lib": "gulp inline-templates && ngc -p tsconfig-lib.json && copyfiles package.json README.md LICENSE dist/lib",
"postbuild:lib": "rimraf tmp",
"prebuild:demo": "rimraf dist/demo",
"build:demo": "ng build --prod",
"pub:lib": "npm run build:lib && npm publish dist/lib",
"pub:demo": "npm run build:demo -- --base-href /ngx-treeview/ && gh-pages -d dist/demo",
"pub": "npm run pub:lib && npm run pub:demo"
},
"keywords": [
"ng",
"ngx",
"angular",
"ngx-treeview",
"tree",
"treeview",
"tree-view",
"checkbox",
"dropdown",
"recursive",
"angular tree component"
],
"author": "Leo Vo <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/leovo2708/ngx-treeview.git"
},
"bugs": {
"url": "https://github.com/leovo2708/ngx-treeview/issues"
},
"main": "./bundles/ngx-treeview.umd.js",
"module": "./src/index.js",
"jsnext:main": "./src/index.js",
"typings": "./src/index.d.ts",
"private": false,
"peerDependencies": {
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"lodash": "^4.0.0"
},
"devDependencies": {
"@angular/cli": "^1.2.0",
"@angular/common": "^4.2.6",
"@angular/compiler": "^4.2.6",
"@angular/compiler-cli": "^4.2.6",
"@angular/core": "^4.2.6",
"@angular/forms": "^4.2.6",
"@angular/platform-browser": "^4.2.6",
"@angular/platform-browser-dynamic": "^4.2.6",
"@angular/router": "^4.2.6",
"@types/jasmine": "^2.5.53",
"@types/jasminewd2": "^2.0.2",
"@types/lodash": "^4.14.68",
"@types/node": "^8.0.14",
"bootstrap": "^4.0.0-alpha.6",
"codecov": "^2.1.0",
"codelyzer": "^3.1.2",
"copyfiles": "^1.2.0",
"core-js": "^2.4.1",
"font-awesome": "^4.7.0",
"gh-pages": "^1.0.0",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "^4.0.0",
"jasmine-core": "^2.6.4",
"jasmine-spec-reporter": "^4.1.1",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"protractor": "^5.1.2",
"rimraf": "^2.6.1",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"zone.js": "^0.8.1"
}
}