-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
{
"name": "ngx-store",
"version": "3.1.1",
"author": "Daniel Kucal",
"license": "ISC",
"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 --prod",
"prebuild": "npm run lint",
"lint": "tslint ./*.ts -t verbose",
"test": "ng test ngx-store --browsers ChromeHeadless --watch=false",
"test:watch": "ng test ngx-store",
"prepublishOnly": "npm run test",
"pack-lib": "npm run build && npm pack ./dist",
"publish-lib:rc": "npm run build && npm publish --tag RC ../../dist/ngx-store",
"compodoc": "compodoc -p tsconfig.json",
"compodoc-serve": "compodoc -s",
"build:schematics": "../../node_modules/.bin/tsc -p tsconfig.schematics.json",
"copy:collection": "cp schematics/collection.json ../../dist/ngx-store/schematics/collection.json",
"postbuild": "npm run build:schematics && npm run copy:collection"
},
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "dependencies"
},
"repository": {
"type": "git",
"url": "https://github.com/zoomsphere/ngx-store.git"
},
"bugs": {
"url": "https://github.com/zoomsphere/ngx-store/issues"
},
"homepage": "https://github.com/zoomsphere/ngx-store",
"keywords": [
"Angular",
"LocalStorage",
"SessionStorage",
"Storage",
"Wrapper",
"Cookies",
"Decorator",
"Library"
],
"peerDependencies": {
"@angular/common": ">= 4",
"@angular/core": ">= 4",
"rxjs": ">= 6",
"lodash.get": ">= 4",
"lodash.isequal": ">= 4",
"lodash.merge": ">= 4",
"lodash.set": ">= 4",
"ts-debug": ">= 1"
},
"dependencies": {
"@ngx-ext/schematics-api": "latest",
"tslib": ">= 2",
"ts-debug": ">= 1"
},
"devDependencies": {
"@types/lodash.get": "^4.4.4",
"@types/lodash.isequal": "^4.5.3",
"@types/lodash.merge": "^4.6.4",
"@types/lodash.set": "^4.3.4",
"@types/node": "^14.14.36",
"ts-debug": "^1.3.0"
},
"engines": {
"node": ">= 8",
"npm": ">= 5"
}
}