-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 3.98 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
{
"name": "@ngx-builders/pwa-local-storage",
"version": "14.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ngx-builders/angular-async-local-storage.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ngx-builders/angular-async-local-storage/issues"
},
"homepage": "https://github.com/ngx-builders/angular-async-local-storage#readme",
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"start:iframe": "ng serve iframe --port 8080",
"build": "ng build ngx-pwa-local-storage -c=production && 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-2019": "ng test ngx-pwa-local-storage --watch false --browsers ChromeHeadless,FirefoxHeadless",
"unit:windows-2019: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",
"release:minor": "VERSION=minor npm run release",
"release:major": "VERSION=major npm run release",
"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; fi"
},
"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.5.5",
"tslib": "2.3.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.0.3",
"@angular-eslint/builder": "13.2.0",
"@angular-eslint/eslint-plugin": "13.2.0",
"@angular-eslint/eslint-plugin-template": "13.2.0",
"@angular-eslint/schematics": "13.2.0",
"@angular-eslint/template-parser": "13.2.0",
"@angular/cli": "14.0.3",
"@angular/compiler-cli": "14.0.3",
"@types/jasmine": "4.0.2",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"copyfiles": "2.4.1",
"eslint": "8.13.0",
"jasmine-core": "4.1.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.17",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-edge-launcher": "0.4.2",
"karma-firefox-launcher": "2.1.2",
"karma-ie-launcher": "1.0.0",
"karma-jasmine": "5.0.0",
"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": "14.0.2",
"protractor": "7.0.0",
"ts-node": "10.7.0",
"typescript": "4.6.3",
"zone.js": "0.11.5"
}
}