-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "jest-enforce",
"version": "2.0.1",
"description": "Check for inflated coverage due to un-mocked dependencies",
"main": "build/bundle.js",
"repository": {
"type": "git",
"url": "https://github.com/pabo/jest-enforce.git"
},
"scripts": {
"build": "node_modules/.bin/rollup -c rollup.config.js",
"build-clean": "rm -rf node_modules && npm i && node_modules/.bin/rollup -c rollup.config.js",
"build-dev": "node_modules/.bin/rollup -c rollup.config.js --watch",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"jest-enforce": "bin/jest-enforce.js"
},
"author": "brett.schellenberg@gmail.com",
"contributors": [
"James Armenta <armentajames@gmail.com> (http://jamesarmenta.com/)"
],
"license": "ISC",
"dependencies": {
"colors": "^1.1.2",
"find-root": "^1.1.0",
"lodash.foreach": "^4.5.0",
"lodash.has": "^4.5.2",
"util.promisify": "^1.0.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.12.1",
"eslint-config-recommended": "^1.5.0",
"eslint-plugin-import": "^2.8.0",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2"
}
}