UNPKG

1.41 kBJSONView Raw
1{
2 "name": "enhanced-resolve",
3 "version": "2.2.2",
4 "author": "Tobias Koppers @sokra",
5 "description": "Offers a async require.resolve function. It's highly configurable.",
6 "files": [
7 "lib"
8 ],
9 "dependencies": {
10 "tapable": "^0.2.3",
11 "memory-fs": "^0.3.0",
12 "graceful-fs": "^4.1.2",
13 "object-assign": "^4.0.1"
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": "^1.1.0",
26 "eslint-plugin-nodeca": "^1.0.3",
27 "istanbul": "^0.4.1",
28 "js-beautify": "^1.5.10",
29 "mocha": "^2.3.4",
30 "should": "^8.0.2"
31 },
32 "engines": {
33 "node": ">=0.6"
34 },
35 "main": "lib/node.js",
36 "homepage": "http://github.com/webpack/enhanced-resolve",
37 "scripts": {
38 "beautify-lint": "beautify-lint lib/**.js test/*.js",
39 "beautify": "beautify-rewrite lib/**.js test/*.js",
40 "lint": "eslint lib test",
41 "pretest": "npm run lint && npm run beautify-lint",
42 "test": "mocha --full-trace --check-leaks",
43 "precover": "npm run lint && npm run beautify-lint",
44 "cover": "istanbul cover node_modules/mocha/bin/_mocha",
45 "travis": "npm run cover -- --report lcovonly"
46 },
47 "repository": {
48 "type": "git",
49 "url": "git://github.com/webpack/enhanced-resolve.git"
50 }
51}