-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1 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
{
"name": "typed-reducer",
"version": "0.1.1",
"description": "Framework-agnostic and class-based typed reducers",
"main": "index.js",
"scripts": {
"test": "npm test",
"build": "tsc -p tsconfig.json",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gbuomprisco/typed-reducer.git"
},
"keywords": [
"ngrx",
"redux",
"typed",
"reducers",
"reducer",
"typescript"
],
"author": "Giancarlo Buomprisco",
"license": "MIT",
"bugs": {
"url": "https://github.com/gbuomprisco/typed-reducer/issues"
},
"homepage": "https://github.com/gbuomprisco/typed-reducer#readme",
"peerDependencies": {
"reflect-metadata": "^0.1.10"
},
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/node": "^8.0.51",
"@types/reflect-metadata": "0.0.5",
"typescript": "^2.6.1"
},
"files": [
"src/",
"index.ts",
"index.js",
"index.d.ts",
"index.js.map"
]
}