-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "redux-combine-reducers-immutable",
"version": "2.1.0",
"description": "Redux's combineReducers helper using Immutable Records",
"contributors": [
"Nicholas Gonzalez <[email protected]>",
"David Idol <[email protected]>"
],
"main": "dist/index.js",
"umd:main": "dist/redux-combine-reducers-immutable.umd.production.js",
"module": "dist/redux-combine-reducers-immutable.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "npm run lint && tsdx test",
"prettier": "pretty-quick --staged",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit --listFiles false",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/di-ng/redux-combine-reducers-immutable.git"
},
"keywords": [
"combineReducers",
"redux",
"immutable",
"record"
],
"engines": {
"node": ">=6.9.1",
"npm": ">=3.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/di-ng/redux-combine-reducers-immutable/issues"
},
"homepage": "https://github.com/di-ng/redux-combine-reducers-immutable#readme",
"peerDependencies": {
"immutable": ">=3.8.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^24.0.15",
"husky": "^3.0.1",
"immutable": "^4.0.0-rc.12",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"tsdx": "^0.7.2",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}