-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.03 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
{
"name": "redux-typed-kit",
"version": "0.0.4",
"author": "Mikhail Shtanko",
"license": "MIT",
"description": "Powerful extensitions for building class-based Redux architecture powered by TypeScript.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"npmName": "redux",
"repository": {
"type": "git",
"url": "git+https://github.com/ordenilluminaten/redux-oop.git"
},
"bugs": {
"url": "https://github.com/ordenilluminaten/redux-oop/issues"
},
"homepage": "https://github.com/ordenilluminaten/redux-oop#readme",
"keywords": [
"redux",
"oop",
"store",
"state",
"class",
"decorator",
"decorated",
"reducer",
"typescript",
"middleware",
"action"
],
"dependencies": {
"redux": "^4.0.4",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/node": "^14.14.16",
"typescript": "^3.9.7"
}
}