forked from MdGolam-Kibria/angular-async-local-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 3.93 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
{
"name": "@ngx-pwa/local-storage",
"version": "13.0.2",
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"start:iframe": "ng serve iframe --port 8080",
"build": "ng build ngx-pwa-local-storage && copyfiles README.md LICENSE dist/ngx-pwa/local-storage && npm run schematics",
"test": "npm run unit && npm run e2e",
"unit": "ng test ngx-pwa-local-storage --watch false",
"unit:macOS-latest": "ng test ngx-pwa-local-storage --watch false --browsers SafariNative",
"unit:macOS-latest:private": "true",
"unit:ubuntu-latest": "ng test ngx-pwa-local-storage --watch false --browsers ChromeHeadless,FirefoxHeadless",
"unit:ubuntu-latest:private": "ng test ngx-pwa-local-storage --watch false --browsers FirefoxPrivate",
"unit:windows-latest": "ng test ngx-pwa-local-storage --watch false --browsers ChromeHeadless,FirefoxHeadless",
"unit:windows-latest:private": "ng test ngx-pwa-local-storage --watch false --browsers ChromePrivate,FirefoxPrivate",
"e2e": "npm run webdriver && npm run e2e:demo && npm run e2e:interoperability",
"e2e:demo": "ng e2e demo --webdriver-update false",
"e2e:interoperability": "ng e2e localforage --webdriver-update false",
"webdriver": "webdriver-manager update",
"lint": "ng lint",
"schematics": "tsc -p projects/ngx-pwa/local-storage/tsconfig.schematics.json && copyfiles --up 3 projects/ngx-pwa/local-storage/schematics/collection.json projects/ngx-pwa/local-storage/schematics/migration.json projects/ngx-pwa/local-storage/schematics/**/schema.json dist/ngx-pwa/local-storage",
"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/local-storage && 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/local-storage --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": "13.0.3",
"@angular/compiler": "13.0.3",
"@angular/core": "13.0.3",
"@angular/platform-browser": "13.0.3",
"@angular/platform-browser-dynamic": "13.0.3",
"@angular/router": "13.0.3",
"rxjs": "7.4.0",
"tslib": "2.3.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.0.4",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "13.0.4",
"@angular/compiler-cli": "13.0.3",
"@types/jasmine": "3.10.2",
"@types/node": "16.11.12",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"copyfiles": "2.4.1",
"eslint": "8.4.1",
"jasmine-core": "3.10.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.9",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.1.0",
"karma-edge-launcher": "0.4.2",
"karma-firefox-launcher": "2.1.2",
"karma-ie-launcher": "1.0.0",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"karma-safari-private-launcher": "1.0.0",
"karma-safarinative-launcher": "1.1.0",
"localforage": "1.10.0",
"ng-packagr": "13.1.1",
"protractor": "7.0.0",
"ts-node": "10.4.0",
"typescript": "4.4.4",
"zone.js": "0.11.4"
}
}