-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "webpack-babel-env-deps",
"version": "1.6.3",
"main": "dist/main.js",
"description": "Find dependencies to transpile with Babel.",
"engines": {
"node": ">=6"
},
"author": "AndersDJohnson <[email protected]>",
"license": "MIT",
"scripts": {
"test": "yarn lint && yarn unit",
"unit": "jest && ( has-env CI && codecov || true )",
"lint": "yarn lint:src && yarn lint:md",
"lint:src": "eslint src",
"lint:md": "eslint **/*.md",
"lint:dist": "eslint --no-eslintrc --config .eslintrc-dist.js dist",
"build": "rm -rf dist && webpack && yarn lint:dist",
"precommit": "yarn test",
"prepush": "yarn test && yarn build"
},
"dependencies": {
"debug": "^2.6.9",
"lodash": "^4.17.4",
"pkg-dir": "^2.0.0",
"read-pkg-up": "^2.0.0",
"resolve-pkg": "^1.0.0",
"semver": "^5.3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"codecov": "^3.6.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^3.5.0",
"has-env": "^1.0.0",
"husky": "^0.14.3",
"jest": "^26.6.3",
"prettier": "^1.18.2",
"strip-indent": "^2.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.6",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"repository": "AndersDJohnson/webpack-babel-env-deps",
"keywords": [
"webpack",
"babel",
"es6",
"es2015",
"es2016",
"es7",
"transpile",
"babel-preset",
"babel-preset-env",
"transpilation",
"transpiler",
"javascript",
"js",
"dependencies",
"dependency"
],
"funding": "https://github.com/sponsors/AndersDJohnson",
"peerDependencies": {
"@babel/preset-env": "^7"
}
}