65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "eslint-import-resolver-webpack",
|
|
"version": "0.12.2",
|
|
"description": "Resolve paths to dependencies, given a webpack.config.js. Plugin for eslint-plugin-import.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"prepublishOnly": "cp ../../{LICENSE,.npmrc} ./",
|
|
"tests-only": "nyc mocha -t 5s",
|
|
"test": "npm run tests-only",
|
|
"report": "nyc report --reporter=html",
|
|
"coveralls": "nyc report --reporter lcovonly && cd ../.. && coveralls < ./resolvers/webpack/coverage/lcov.info"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"config.js"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/benmosher/eslint-plugin-import.git"
|
|
},
|
|
"keywords": [
|
|
"eslint-plugin-import",
|
|
"eslint",
|
|
"jsnext",
|
|
"modules",
|
|
"webpack"
|
|
],
|
|
"author": "Ben Mosher (me@benmosher.com)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/benmosher/eslint-plugin-import/issues"
|
|
},
|
|
"homepage": "https://github.com/benmosher/eslint-plugin-import/tree/master/resolvers/webpack",
|
|
"dependencies": {
|
|
"array-find": "^1.0.0",
|
|
"debug": "^2.6.9",
|
|
"enhanced-resolve": "^0.9.1",
|
|
"find-root": "^1.1.0",
|
|
"has": "^1.0.3",
|
|
"interpret": "^1.2.0",
|
|
"lodash": "^4.17.15",
|
|
"node-libs-browser": "^1.0.0 || ^2.0.0",
|
|
"resolve": "^1.13.1",
|
|
"semver": "^5.7.1"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint-plugin-import": ">=1.4.0",
|
|
"webpack": ">=1.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-plugin-istanbul": "^4.1.6",
|
|
"babel-preset-es2015-argon": "latest",
|
|
"babel-register": "^6.26.0",
|
|
"chai": "^3.5.0",
|
|
"coveralls": "^3.0.0",
|
|
"mocha": "^3.5.3",
|
|
"nyc": "^11.7.1"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"test/"
|
|
]
|
|
}
|
|
}
|