1
|
{
|
2
|
"name": "enhanced-resolve",
|
3
|
"version": "4.1.0",
|
4
|
"author": "Tobias Koppers @sokra",
|
5
|
"description": "Offers a async require.resolve function. It's highly configurable.",
|
6
|
"files": [
|
7
|
"lib",
|
8
|
"LICENSE"
|
9
|
],
|
10
|
"dependencies": {
|
11
|
"graceful-fs": "^4.1.2",
|
12
|
"memory-fs": "^0.4.0",
|
13
|
"tapable": "^1.0.0"
|
14
|
},
|
15
|
"licenses": [
|
16
|
{
|
17
|
"type": "MIT",
|
18
|
"url": "http://www.opensource.org/licenses/mit-license.php"
|
19
|
}
|
20
|
],
|
21
|
"devDependencies": {
|
22
|
"beautify-lint": "^1.0.3",
|
23
|
"codecov.io": "^0.1.6",
|
24
|
"coveralls": "^2.11.6",
|
25
|
"eslint": "^3.14.1",
|
26
|
"eslint-plugin-node": "^3.0.5",
|
27
|
"eslint-plugin-nodeca": "^1.0.3",
|
28
|
"istanbul": "^0.4.1",
|
29
|
"js-beautify": "^1.5.10",
|
30
|
"mocha": "^2.3.4",
|
31
|
"should": "^8.0.2"
|
32
|
},
|
33
|
"engines": {
|
34
|
"node": ">=6.9.0"
|
35
|
},
|
36
|
"main": "lib/node.js",
|
37
|
"homepage": "http://github.com/webpack/enhanced-resolve",
|
38
|
"scripts": {
|
39
|
"beautify-lint": "beautify-lint lib/**.js test/*.js",
|
40
|
"beautify": "beautify-rewrite lib/**.js test/*.js",
|
41
|
"lint": "eslint lib test",
|
42
|
"pretest": "npm run lint && npm run beautify-lint",
|
43
|
"test": "mocha --full-trace --check-leaks",
|
44
|
"precover": "npm run lint && npm run beautify-lint",
|
45
|
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
|
46
|
"travis": "npm run cover -- --report lcovonly"
|
47
|
},
|
48
|
"repository": {
|
49
|
"type": "git",
|
50
|
"url": "git://github.com/webpack/enhanced-resolve.git"
|
51
|
}
|
52
|
}
|