-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.75 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
71
{
"name": "jest-mock-action-creators",
"version": "1.2.1",
"description": "Easy mock & test redux action creators with dispatch() in your components",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"jest-diff": "^22.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@types/babel-core": "^6.25.3",
"@types/babel-types": "^7.0.0",
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"del-cli": "^1.1.0",
"jest": "^22.4.1",
"npm-run-all": "^4.1.2",
"ts-jest": "^22.0.4",
"typescript": "^2.7.2",
"typescript-snapshots-plugin": "^1.1.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-beta || ^7.0.0-rc || ^7.0.0",
"jest": ">= 21.0.0"
},
"scripts": {
"test": "jest",
"clean": "del-cli dist",
"build": "tsc -p tsconfig-build.json",
"prepare": "run-s clean build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asvetliakov/jest-mock-action-creators.git"
},
"keywords": [
"jest",
"mock",
"redux",
"dispatch",
"testing"
],
"author": "Alexey Svetliakov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/asvetliakov/jest-mock-action-creators/issues"
},
"homepage": "https://github.com/asvetliakov/jest-mock-action-creators#readme",
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"roots": [
"<rootDir>/src"
],
"testEnvironment": "node",
"resetMocks": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"\\.(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"json",
"js",
"ts"
]
}
}