-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "jest-redux-utils",
"version": "0.1.0",
"description": "Utilities for testing Redux reducers with Jest snapshots",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:smartlyio/jest-redux-utils.git",
"author": "Sami Kukkonen <sami@smartly.io>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest --coverage",
"prepublishOnly": "npm run-script build"
},
"devDependencies": {
"@types/flux-standard-action": "^0.5.31",
"@types/jest": "^21.1.8",
"flux-standard-action": "^2.0.0",
"jest": "^21.2.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"ts-jest": "^21.2.4",
"typescript": "^2.6.2"
},
"peerDependencies": {
"jest": "^21.2.1",
"redux": "^3.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/test/.+\\.test\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}