40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
|
{
|
||
|
"name": "eslint-rule-composer",
|
||
|
"version": "0.3.0",
|
||
|
"description": "A utility for composing ESLint rules from other ESLint rules",
|
||
|
"main": "lib/rule-composer.js",
|
||
|
"files": [
|
||
|
"lib/"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"lint": "eslint lib/ tests/",
|
||
|
"test": "npm run lint && mocha tests/**/*.js",
|
||
|
"generate-release": "node-release-script"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/not-an-aardvark/eslint-rule-composer.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"eslint"
|
||
|
],
|
||
|
"author": "Teddy Katz",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/not-an-aardvark/eslint-rule-composer/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/not-an-aardvark/eslint-rule-composer#readme",
|
||
|
"devDependencies": {
|
||
|
"@not-an-aardvark/node-release-script": "^0.1.0",
|
||
|
"chai": "^4.1.2",
|
||
|
"eslint": "^4.7.1",
|
||
|
"eslint-config-airbnb-base": "^12.0.0",
|
||
|
"eslint-plugin-import": "^2.7.0",
|
||
|
"eslint-plugin-node": "^5.1.1",
|
||
|
"mocha": "^3.5.3"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=4.0.0"
|
||
|
}
|
||
|
}
|