-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 904 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
{
"name": "jest-webpack",
"version": "0.2.1",
"description": "Webpack jest plugin",
"main": "preprocessor.js",
"scripts": {
"lint": "jshint --config=.jshintrc preprocessor.js",
"pretest": "npm run lint",
"test": "mocha --harmony",
"precover": "npm run lint",
"cover": "node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
},
"keywords": [
"jest",
"webpack"
],
"author": "ColCh <colchgh@gmail.com>",
"license": "MIT",
"dependencies": {
"enhanced-resolve": "^0.8.4",
"memory-fs": "^0.2.0",
"pkginfo": "^0.3.0",
"webpack": "^1.5.3"
},
"repository": {
"type": "git",
"url": "http://github.com/ColCh/jest-webpack.git"
},
"devDependencies": {
"coffee-loader": "^0.7.2",
"istanbul": "^0.3.13",
"jest-cli": "^0.2.2",
"jshint": "^2.6.0",
"mocha": "^2.1.0",
"should": "^4.6.2"
}
}