folderslint
Version:
Project directory structure linter
69 lines (68 loc) • 1.49 kB
JSON
{
"name": "folderslint",
"version": "1.2.0",
"description": "Project directory structure linter",
"main": "index.js",
"scripts": {
"lint": "eslint */*.js",
"test": "jest",
"precommit": "lint-staged && npm test"
},
"keywords": [
"lint",
"linter",
"structure",
"directory",
"folders",
"project"
],
"bin": "index.js",
"files": [
"index.js",
"src"
],
"author": "Denis Raslov <denis.raslov@yandex.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/denisraslov/folderslint.git"
},
"bugs": {
"url": "https://github.com/denisraslov/folderslint/issues"
},
"homepage": "https://github.com/denisraslov/folderslint#readme",
"dependencies": {
"chalk": "^4.0.0",
"glob": "^7.1.6",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^0.14.3",
"jest": "^26.0.0",
"lint-staged": "^7.1.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.0"
},
"jest": {
"testURL": "http://localhost/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}