-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
65 lines (65 loc) · 2.46 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
{
"name": "angular-gauge-parent",
"version": "0.0.0",
"scripts": {
"start": "ng serve demo",
"build:dist": "ng build angular-gauge",
"build:watch": "ng build angular-gauge --watch",
"build:demo": "ng build demo",
"build:clean": "del-cli dist",
"watch": "ng build angular-gauge --watch --configuration development",
"test": "ng test angular-gauge --watch=false --browsers=ChromeHeadless",
"test:watch": "ng test angular-gauge --watch --browsers=ChromeHeadless",
"commit": "git-cz",
"compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demo/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"gh-pages": "npm run build:clean && npm run build:demo && npm run compodoc && ng deploy && npm run build:clean",
"copyfiles": "copyfiles README.md CHANGELOG.md dist/angular-gauge",
"prerelease": "npm test",
"release:git": "standard-version && git push --follow-tags origin main",
"release:npm": "npm run build:dist && npm run copyfiles && npm publish dist/angular-gauge",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean && npm run gh-pages",
"prettier": "prettier --write",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.0",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.0",
"@angular/cli": "~16.0.0",
"@angular/compiler-cli": "^16.0.0",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "~4.3.0",
"angular-cli-ghpages": "^1.0.6",
"commitizen": "^4.2.1",
"copyfiles": "^2.4.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"husky": "^8.0.3",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^16.0.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.3",
"standard-version": "^9.0.0",
"svg-gauge": "^1.0.7",
"typescript": "~5.0.2",
"validate-commit-msg": "^2.12.1"
}
}