forked from zoomsphere/ngx-store
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.59 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
85
{
"name": "ngx-store",
"version": "10.0.0",
"description": "Angular decorators to automagically keep variables in HTML5 LocalStorage, SessionStorage, cookies; injectable services for managing and listening to data changes and a bit more.",
"scripts": {
"build": "ng build",
"lint": "tslint ./*.ts -t verbose",
"test": "ng test",
"test-CI": "ng test --browsers ChromeHeadlessNoSandbox --no-progress --no-watch",
"test:watch": "karma start karma.conf.js --single-run false",
"pack-lib": "npm run build && npm pack ./dist",
"publish-lib": "npm run build && npm publish ./dist",
"publish-lib:rc": "npm run build && npm publish --tag RC ./dist",
"compodoc": "compodoc -p tsconfig.json",
"compodoc-serve": "compodoc -s",
"build-prod": "ng build --configuration production"
},
"typings": "./ngx-store.d.ts",
"author": "eFaps",
"repository": {
"type": "git",
"url": "https://github.com/eFaps/ngx-store.git"
},
"bugs": {
"url": "https://github.com/eFaps/ngx-store/issues"
},
"homepage": "https://github.com/eFaps/ngx-store",
"keywords": [
"Angular9",
"LocalStorage",
"SessionStorage",
"Storage",
"Wrapper",
"Cookies",
"Decorator",
"Library"
],
"license": "ISC",
"dependencies": {
"@angular/animations": "^19.0.6",
"@angular/common": "^19.0.6",
"@angular/compiler": "^19.0.6",
"@angular/core": "^19.0.6",
"@angular/forms": "^19.0.6",
"@angular/platform-browser": "^19.0.6",
"@angular/platform-browser-dynamic": "^19.0.6",
"@angular/router": "^19.0.6",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"rxjs": "^7.8.1",
"ts-debug": "^1.3.0",
"tslib": "^2.6.2",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.7",
"@angular/cli": "^19.0.7",
"@angular/compiler-cli": "^19.0.6",
"@types/jasmine": "^4.6.4",
"@types/lodash.get": "^4.4.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.set": "^4.3.9",
"@types/node": "^20.10.3",
"codelyzer": "^6.0.2",
"jasmine-core": "^4.6.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^19.0.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.6.3"
},
"//": "\"engineStrict\": false,",
"engines": {
"node": ">= 18",
"npm": ">= 8"
}
}