package.json
{
"name": "eslint-config-charlike",
"version": "0.3.0",
"description": "Code style: Charlike. Self preferences on top of Standard Style v9 release. They may or may not be included in next releases.",
"repository": "tunnckoCore/eslint-config-charlike",
"author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "eslint index.js test.js --fix --config config.json",
"test": "npm-run-all -s lint test:*",
"test:api": "nyc --reporter lcov node test.js",
"test:report": "nyc report",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"git": "npm-run-all -s git:*",
"git:add": "git add --all",
"git:cz": "git-cz",
"commit": "npm-run-all -s test git"
},
"dependencies": {
"eslint-config-standard": "^7.0.0-beta.0",
"eslint-config-standard-jsx": "^3.3.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.1"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.16.1",
"mukla": "^0.4.8",
"npm-run-all": "^4.0.1",
"nyc": "^11.0.0",
"pre-commit": "^1.2.2",
"standard-version": "^4.0.0"
},
"files": [
"index.js",
"config.json"
],
"keywords": [
"charlike",
"charlint",
"config",
"configuration",
"eslint",
"esnext",
"free",
"share",
"shareable",
"standard",
"standardjs",
"style"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"ignore": [
"dist/**"
]
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"always-done",
"minibase",
"try-catch-core"
],
"highlight": "always-done"
},
"lint": {
"reflinks": true
},
"reflinks": [
"always-done",
"async-done",
"base",
"charlike",
"commitizen",
"dezalgo",
"once",
"standard-version",
"verb",
"verb-generate-readme",
"eslint",
"standard"
]
},
"engines": {
"node": ">=4",
"npm": ">=2"
},
"nyc": {
"check-coverage": true,
"statements": 100,
"functions": 100,
"branches": 100,
"lines": 100
}
}