-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "jest-babel-preprocessor",
"version": "0.2.0",
"description": "Babel preprocessor for Jest",
"main": "preprocessor.js",
"scripts": {
"postinstall": "scripts/postinstall",
"test": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sterpe/jest-babel-preprocessor.git"
},
"keywords": [
"jest",
"preprocessor",
"babel"
],
"author": "sterpe <[email protected]> (https://github.com/sterpe)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sterpe/jest-babel-preprocessor/issues"
},
"homepage": "https://github.com/sterpe/jest-babel-preprocessor#readme",
"dependencies": {
"babel-core": "^5.8.22"
},
"devDependencies": {
"jest-cli": "^0.4.19",
"react": "^0.13.3"
},
"jest": {
"scriptPreprocessor": "<rootDir>/index.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}