-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
{
"name": "babel-plugin-jest-easy-mock",
"version": "1.3.0",
"description": "Easy jest mocking by automatically inlining module paths",
"main": "dist/index.js",
"types": "index.d.ts",
"keywords": [
"jest",
"babel",
"babel-plugin",
"babel plugin",
"jest plugin",
"jest-plugin",
"testing",
"mock",
"mocking"
],
"scripts": {
"test": "jest",
"build": "tsc",
"clean": "del-cli ./dist",
"prepare": "run-s clean build"
},
"repository": {
"type": "git",
"url": "https://github.com/asvetliakov/babel-plugin-jest-easy-mock.git"
},
"author": "Alexey Svetliakov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@types/babel__core": "^7.1.7",
"@types/babel__generator": "^7.6.1",
"@types/babel__template": "^7.0.2",
"@types/babel__traverse": "^7.0.11",
"@types/jest": "^25.2.1",
"del-cli": "^3.0.0",
"jest": "^26.0.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3",
"typescript-snapshots-plugin": "^1.7.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-beta || ^7.0.0-rc || ^7.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"testEnvironment": "node",
"resetMocks": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"\\.(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"roots": [
"<rootDir>/src/"
],
"moduleFileExtensions": [
"json",
"js",
"ts"
]
}
}