-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "reducer-class",
"version": "1.4.0",
"description": "Boilerplate free class-based reducer creator. Built with TypeScript. Works with Redux and NGRX. Has integration with immer.",
"main": "dist/index.js",
"scripts": {
"test": "npx jest -i",
"compile": "npx shx rm -rf dist && npx tsc -p tsconfig.prod.json",
"lint": "npx tsc -p tsconfig.json --noEmit && npx tslint -c tslint.json -p tsconfig.json",
"prepack": "npm run compile",
"coverage-report": "npx shx cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenondrums/reducer-class.git"
},
"keywords": [
"redux",
"ngrx",
"store",
"state",
"class",
"decorator",
"decorated",
"reducer"
],
"author": "keenondrums (andrey.goncharov+it@protonmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/keenondrums/reducer-class/issues"
},
"homepage": "https://github.com/keenondrums/reducer-class#readme",
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/redux-actions": "^2.3.2",
"coveralls": "^3.0.3",
"doctoc": "^1.4.0",
"flux-action-class": "^1.1.1",
"husky": "^1.3.1",
"immer": "^1.11.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.16.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"reflect-metadata": "^0.1.13",
"shx": "^0.3.2",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3333"
},
"dependencies": {
"redux-create-reducer": "^1.2.0",
"typelevel-ts": "^0.3.5"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13",
"immer": "^1.11.0"
}
}