eslint-config-chain-able
Version:
an opinionated ESLint configuration
91 lines (89 loc) • 1.99 kB
JSON
{
"name": "es-abstract",
"version": "1.7.0",
"author": {
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
},
"contributors": [
{
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
}
],
"description": "ECMAScript spec abstract operations.",
"license": "MIT",
"main": "index.js",
"scripts": {
"prepublish": "safe-publish-latest",
"pretest": "npm run --silent lint",
"test": "npm run tests-only",
"posttest": "npm run --silent security",
"tests-only": "node test/index.js",
"coverage": "covert test/*.js",
"coverage-quiet": "covert test/*.js --quiet",
"lint": "npm run --silent jscs && npm run --silent eslint",
"jscs": "jscs test/*.js *.js",
"eslint": "eslint test/*.js *.js",
"eccheck": "editorconfig-tools check *.js **/*.js > /dev/null",
"security": "nsp check"
},
"repository": {
"type": "git",
"url": "git://github.com/ljharb/es-abstract.git"
},
"keywords": [
"ECMAScript",
"ES",
"abstract",
"operation",
"abstract operation",
"JavaScript",
"ES5",
"ES6",
"ES7"
],
"dependencies": {
"function-bind": "^1.1.0",
"is-callable": "^1.1.3",
"es-to-primitive": "^1.1.1",
"is-regex": "^1.0.3"
},
"devDependencies": {
"tape": "^4.6.3",
"covert": "^1.1.0",
"jscs": "^3.0.7",
"editorconfig-tools": "^0.1.1",
"nsp": "^2.6.2",
"eslint": "^3.14.0",
"@ljharb/eslint-config": "^10.0.0",
"object-is": "^1.0.1",
"foreach": "^2.0.5",
"semver": "^5.3.0",
"replace": "^0.3.0",
"safe-publish-latest": "^1.1.1"
},
"testling": {
"files": "test/index.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2"
]
},
"engines": {
"node": ">= 0.4"
}
}