-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.62 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
{
"name": "redux-updaters",
"version": "1.1.0",
"description": "Update your Redux state directly from your components. No reducers, no actions.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "npm run build:clean && npm run build:lib",
"build:clean": "rimraf lib/",
"build:lib": "tsc",
"precommit": "tslint --project .",
"prepare": "npm run build"
},
"author": "Richard van Willegen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oberonamsterdam/redux-updaters"
},
"devDependencies": {
"@types/dot-prop": "^4.2.0",
"@types/jest": "^22.2.3",
"@types/node": "^10.1.3",
"husky": "^0.14.3",
"jest": "^23.0.1",
"redux": "^4.0.4",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.2",
"tslint": "^5.10.0",
"tslint-config-oberon": "^1.0.4",
"typescript": "^2.9.2"
},
"PeerDependencies": {
"redux": "^3.0.0",
"redux-thunk": "^2.0.0"
},
"dependencies": {
"@types/get-value": "^3.0.0",
"@types/set-value": "^2.0.0",
"get-value": "^3.0.1",
"set-value": "^3.0.1",
"snake-case": "^2.1.0"
},
"jest": {
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
},
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}