76 lines
1.6 KiB
JSON
76 lines
1.6 KiB
JSON
{
|
|
"name": "pkgcomp",
|
|
"version": "0.0.0",
|
|
"description": "Node package compare and change runner",
|
|
"bin": {
|
|
"pkgcomp": "src/cli.js"
|
|
},
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"lint": "eslint '*.{js,mjs}' 'src/**/*.{js,mjs}'",
|
|
"version": "npm-auto-version",
|
|
"start": "node ."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/w33ble/pkgcomp.git"
|
|
},
|
|
"keywords": [],
|
|
"files": [
|
|
"src/",
|
|
"index.js",
|
|
"index.mjs",
|
|
"CHANGELOG.md",
|
|
"AUTHORS.md"
|
|
],
|
|
"author": "joe fleming (https://github.com/w33ble)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/w33ble/pkgcomp/issues"
|
|
},
|
|
"homepage": "https://github.com/w33ble/pkgcomp",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"ignore": [
|
|
"package.json"
|
|
],
|
|
"linters": {
|
|
"*.{js,mjs}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
],
|
|
"*.{js,mjs,json,css}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"dependencies": {
|
|
"fast-deep-equal": "^2.0.1",
|
|
"joycon": "^2.2.4",
|
|
"md5-file": "^4.0.0",
|
|
"mkdirp": "^0.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@w33ble/npm-auto-tools": "*",
|
|
"eslint": "^5.15.3",
|
|
"eslint-config-airbnb": "^17.1.0",
|
|
"eslint-config-prettier": "^4.1.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-jsx-a11y": "^6.1.1",
|
|
"eslint-plugin-prettier": "^3.0.1",
|
|
"eslint-plugin-react": "^7.11.0",
|
|
"husky": "^1.3.1",
|
|
"lint-staged": "^8.1.4",
|
|
"prettier": "^1.16.4"
|
|
}
|
|
}
|