eslint-config-chain-able
Version:
an opinionated ESLint configuration
72 lines (71 loc) • 1.55 kB
JSON
{
"name": "es-to-primitive",
"version": "1.1.1",
"author": "Jordan Harband",
"description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES6 versions.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run tests-only && npm run security",
"tests-only": "node --es-staging test",
"coverage": "covert test/*.js",
"coverage-quiet": "covert test/*.js --quiet",
"lint": "npm run jscs && npm run eslint",
"jscs": "jscs test/*.js *.js",
"eslint": "eslint test/*.js *.js",
"security": "nsp check"
},
"repository": {
"type": "git",
"url": "git://github.com/ljharb/es-to-primitive.git"
},
"keywords": [
"primitive",
"abstract",
"ecmascript",
"es5",
"es6",
"toPrimitive",
"coerce",
"type",
"object"
],
"dependencies": {
"is-callable": "^1.1.1",
"is-date-object": "^1.0.1",
"is-symbol": "^1.0.1"
},
"devDependencies": {
"tape": "^4.4.0",
"covert": "^1.1.0",
"object-is": "^1.0.1",
"foreach": "^2.0.5",
"jscs": "^2.7.0",
"nsp": "^2.2.0",
"eslint": "^1.10.3",
"@ljharb/eslint-config": "^1.6.1",
"replace": "^0.3.0",
"semver": "^5.1.0"
},
"testling": {
"files": "test",
"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"
}
}