-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.5 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
{
"name": "@e-cloud/ngx-tree",
"version": "1.2.1",
"description": "A derived version of angular-tree-component without mobx. Much Better performance.",
"scripts": {
"build": "ng build ngx-tree",
"build:demo": "ng build demo --base-href /ngx-tree/docs/demo/ -c production",
"start": "ng serve -o demo",
"docs": "npm run docs:build",
"docs:build": "compodoc -p projects/ngx-tree/tsconfig.doc.json -n ngx-tree -d dist/docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"lint": "ng lint --type-check",
"test": "ng test ngx-tree",
"release": "standard-version -a",
"deploy": "npm run build && npm publish --access=public ./dist/ngx-tree --registry=https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/e-cloud/ngx-tree"
},
"author": {
"name": "e-cloud",
"email": "[email protected]"
},
"keywords": [
"angular"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/e-cloud/ngx-tree/issues"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.802.2",
"@angular-devkit/build-ng-packagr": "~0.802.2",
"@angular/animations": "^8.2.2",
"@angular/cli": "^8.2.2",
"@angular/common": "^8.2.2",
"@angular/compiler": "^8.2.2",
"@angular/compiler-cli": "^8.2.2",
"@angular/core": "^8.2.2",
"@angular/language-service": "^8.2.2",
"@angular/platform-browser": "^8.2.2",
"@angular/platform-browser-dynamic": "^8.2.2",
"@angular/router": "^8.2.2",
"@compodoc/compodoc": "^1.0.0",
"@types/jasmine": "^3.4.0",
"@types/lodash-es": "^4.17.0",
"@types/node": "~9.4.0",
"classlist.js": "^1.1.20150312",
"codelyzer": "^5.0.0",
"core-js": "^3.2.0",
"element-closest": "^3.0.0",
"jasmine-core": "^3.4.0",
"jasmine-spec-reporter": "~4.2.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-jasmine": "^2.0.0",
"karma-jasmine-html-reporter": "^1.4.0",
"lodash-es": "^4.17.10",
"ng-packagr": "^5.5.0",
"protractor": "^5.1.2",
"rxjs": "^6.5.2",
"standard-version": "^4.1.0",
"tsickle": "^0.36.0",
"tslib": "^1.10.0",
"tslint": "^5.9.0",
"typescript": "~3.5.3",
"web-animations-js": "^2.3.2",
"zone.js": "~0.10.0"
},
"engines": {
"node": ">=10.0.0"
},
"standard-version": {
"scripts": {
"postbump": "node tools/bump-version.js && git add ."
}
}
}