-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "@ngx-builders/pwa-offline",
"version": "13.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-pwa-offline -c=production && copyfiles README.md LICENSE dist/ngx-pwa/offline",
"lint": "ng lint",
"release:patch": "VERSION=patch npm run release && npm run githubrelease",
"release:minor": "VERSION=minor npm run release && npm run githubrelease",
"release:major": "VERSION=major npm run release && npm run githubrelease",
"release:premajor": "VERSION=premajor TAG=next npm run release",
"release:prerelease": "VERSION=prerelease TAG=next npm run release",
"release": "if test $VERSION; then npm run build && cd projects/ngx-pwa/offline && npm version $VERSION --git-tag-version false && git add package.json && cd ../../.. && git commit -m \"release\" && npm version $VERSION && npm run build && npm publish ./dist/ngx-pwa/offline --access public --tag ${TAG:-latest} && git push && git push --tags; fi",
"githubrelease": "CHANGELOG=$(sed -n \"/^## $npm_package_version/,/^## /p\" CHANGELOG.md | sed '1d;$d') && gh release create v$npm_package_version --title v$npm_package_version --notes \"$CHANGELOG\""
},
"private": true,
"dependencies": {
"@angular/common": "^14.0.3",
"@angular/compiler": "^14.0.3",
"@angular/core": "^14.0.3",
"@angular/platform-browser": "^14.0.3",
"@angular/platform-browser-dynamic": "^14.0.3",
"@angular/router": "^14.0.3",
"rxjs": "^7.4.0",
"tslib": "~2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.3",
"@angular-eslint/builder": "13.0.0-alpha.0",
"@angular-eslint/eslint-plugin": "13.0.0-alpha.0",
"@angular-eslint/eslint-plugin-template": "13.0.0-alpha.0",
"@angular-eslint/schematics": "13.0.0-alpha.0",
"@angular-eslint/template-parser": "13.0.0-alpha.0",
"@angular/cli": "^14.0.3",
"@angular/compiler-cli": "^14.0.3",
"@types/jasmine": "^3.6.3",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.1.0",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^14.0.2",
"protractor": "^7.0.0",
"ts-node": "^10.1.0",
"typescript": "~4.7.4"
}
}