-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.67 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
{
"name": "ngx-reactive-storage",
"version": "2.0.0-next.2",
"license": "MIT",
"author": {
"name": "Evgeniy OZ",
"email": "[email protected]",
"url": "https://jamm.dev"
},
"repository": {
"url": "git+https://github.com/e-oz/ngx-reactive-storage.git"
},
"keywords": [
"angular",
"reactive",
"storage",
"indexeddb",
"localstorage"
],
"scripts": {
"ng": "ng",
"build": "ng build ngx-reactive-storage",
"test": "npx jest",
"pub": "npm run pre && npm publish ./dist/ngx-reactive-storage",
"pub-next": "npm run pre && npm publish ./dist/ngx-reactive-storage --tag next",
"pre": "npm i && ng build ngx-reactive-storage && cp ./README.md ./dist/ngx-reactive-storage/README.md && npx jest --clearCache && npm run test && npm publish ./dist/ngx-reactive-storage --dry-run",
"reinst": "rm -rf node_modules && rm -f package-lock.json && rm -rf dist && npm i && npm run pre"
},
"private": false,
"dependencies": {
"@angular/common": "^19.0.0-rc.0",
"@angular/cdk": "^19.0.0-rc.0",
"@angular/core": "^19.0.0-rc.0",
"@angular/material": "^19.0.0-rc.0",
"@angular/platform-browser": "^19.0.0-rc.0",
"localforage": "^1.10.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0-rc.0",
"@angular/compiler": "^19.0.0-rc.0",
"@angular/compiler-cli": "^19.0.0-rc.0",
"@angular/platform-browser-dynamic": "^19.0.0-rc.0",
"@types/jest": "^29.5.14",
"fake-indexeddb": "^6.0.0",
"jest": "^29.7.0",
"jest-preset-angular": "^14.2.4",
"ng-packagr": "^19.0.0-rc.0",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"zone.js": "~0.15.0"
}
}