-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
67 lines (67 loc) · 3 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
{
"name": "@ngx-pwa/local-storage",
"version": "19.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"start:iframe": "ng serve iframe --port 8080",
"build": "ng build lib && npm run schematics",
"test": "npm run unit && npm run e2e",
"unit": "ng test lib --watch false",
"unit:macos-14": "ng test lib --watch false --browsers SafariNative",
"unit:macos-14:private": "true",
"unit:ubuntu-latest": "ng test lib --watch false --browsers ChromeHeadless,FirefoxHeadless",
"unit:ubuntu-latest:private": "ng test lib --watch false --browsers FirefoxPrivate",
"unit:windows-latest": "ng test lib --watch false --browsers ChromeHeadless,FirefoxHeadless",
"unit:windows-latest:private": "ng test lib --watch false --browsers ChromePrivate,FirefoxPrivate",
"e2e": "playwright install chromium && npm run e2e:demo && npm run e2e:interoperability",
"e2e:demo": "playwright test --config playwright-demo.config.ts",
"e2e:interoperability": "playwright test --config playwright-localforage.config.ts",
"lint": "ng lint",
"schematics": "tsc -p lib/tsconfig.schematics.json && copyfiles --up 1 lib/schematics/collection.json lib/schematics/migration.json lib/schematics/**/schema.json dist/lib",
"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 lib && npm version $VERSION --no-git-tag-version && git add package.json && cd .. && git commit -m \"release\" && npm version $VERSION && npm run build && npm publish ./dist/lib --access public --tag ${TAG:-latest} && git push; fi"
},
"private": true,
"dependencies": {
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/router": "^19.0.0",
"rxjs": "^7.6.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@playwright/test": "^1.49.0",
"@sinclair/typebox": "^0.34.4",
"@types/jasmine": "~5.1.1",
"angular-eslint": "^18.4.1",
"better-typescript-lib": "~2.9.0",
"copyfiles": "^2.4.1",
"eslint": "^9.15.0",
"jasmine-core": "~5.4.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-safari-private-launcher": "^1.0.0",
"karma-safarinative-launcher": "^1.1.0",
"localforage": "^1.10.0",
"ng-packagr": "^19.0.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.15.0",
"zone.js": "^0.15.0"
}
}