-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
124 lines (124 loc) · 3.95 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ng2-tree",
"version": "3.0.0",
"description": "angular2 component for visualizing data that can be naturally represented as a tree",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Georgii Rychko",
"email": "[email protected]"
},
"homepage": "https://github.com/valor-software/ng2-tree",
"repository": {
"type": "git",
"url": "[email protected]:valor-software/ng2-tree.git"
},
"bugs": {
"url": "https://github.com/valor-software/ng2-tree/issues"
},
"private": true,
"keywords": [
"tree",
"ng2",
"angular2",
"ng2-tree",
"branch",
"tree-view",
"branchy",
"angular2-tree-view",
"expand",
"collapse",
"recursive"
],
"scripts": {
"compile": "npx ng-packagr -p ng-package.json",
"clean": "rimraf coverage build dist dist-demo bundles factories .publish",
"pre:publish": "npm run lint && npm run compile && cp -R src/styles.css README.md media dist/ng2-tree",
"post:publish": "npm run build:demo && gh-pages -d dist-demo",
"start": "ng serve",
"build:demo": "ng build",
"test": "ng test --watch=false",
"test:w": "ng test --watch=true",
"test:cov": "ng test -sr -cc",
"lint": "ng lint ng2-tree",
"e2e": "ng e2e",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"github-release": "conventional-github-releaser -p angular",
"version": "npm run changelog && git add CHANGELOG.md",
"postversion": "git push origin master && git push --tags && npm run github-release && node publish.js",
"webdriver-update": "node ./node_modules/protractor/bin/webdriver-manager update",
"precommit": "pretty-quick --staged",
"prettier": "prettier --write '{.,src,test}/**/*.ts'"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && pretty-quick --staged"
}
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.11",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "^16.2.11",
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/compiler-cli": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/language-service": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"@types/jasmine": "^3.10.18",
"@types/jest": "^29.5.11",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"alertifyjs": "1.10.0",
"codelyzer": "^6.0.0",
"conventional-changelog": "1.1.7",
"conventional-changelog-cli": "1.3.5",
"conventional-github-releaser": "2.0.0",
"core-js": "2.5.1",
"eslint": "^8.51.0",
"eslint-plugin-html": "^7.1.0",
"font-awesome": "4.7.0",
"gh-pages": "1.1.0",
"husky": "0.14.3",
"jasmine-core": "^3.99.1",
"jasmine-data-provider": "2.2.0",
"jasmine-spec-reporter": "^5.0.2",
"karma": "~6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-phantomjs-launcher": "1.0.4",
"ng-packagr": "^16.2.3",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.16",
"prettier": "1.10.2",
"pretty-quick": "1.4.1",
"protractor": "~7.0.0",
"puppeteer": "^1.20.0",
"rimraf": "2.6.2",
"rxjs": "^6.6.7",
"rxjs-tslint-rules": "4.34.8",
"shelljs": "0.7.8",
"systemjs-builder": "0.16.12",
"ts-node": "3.3.0",
"tslint": "~6.1.0",
"typescript": "^4.9.5",
"uuid": "^3.1.0",
"webpack": "^5.75.0",
"zone.js": "^0.13.3"
},
"dependencies": {
"karma-webpack": "^5.0.0",
"tslib": "^2.0.0"
}
}