-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "jest-webpack-alias",
"version": "3.3.4",
"description": "Preprocessor for Jest that is able to resolve require() statements using webpack aliases.",
"main": "lib/preprocessor.js",
"scripts": {
"test": "mocha --reporter tap test",
"coverage": "mocha test --require blanket -R mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js"
},
"config": {
"blanket": {
"pattern": [
"lib"
],
"data-cover-never": [
"node_modules",
"test"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/mwolson/jest-webpack-alias.git"
},
"author": "Michael Olson <mwolson@member.fsf.org>",
"license": "MIT",
"keywords": [
"jest",
"webpack",
"require",
"resolve",
"alias"
],
"dependencies": {
"lodash": "^4.17.15",
"pkginfo": "^0.3.0",
"transform-jest-deps": "^2.2.2",
"unwin": "^1.0.1"
},
"devDependencies": {
"blanket": "^1.2.1",
"chai": "^3.2.0",
"coveralls": "^3.0.7",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.0.0",
"rewire": "^2.3.4",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0"
}
}