initial commit
This commit is contained in:
67
package.json
Normal file
67
package.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"name": "pkgcomp",
|
||||
"version": "0.0.0",
|
||||
"description": "Node package compare and change runner",
|
||||
"main": "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": {},
|
||||
"devDependencies": {
|
||||
"@w33ble/npm-auto-tools": "*",
|
||||
"eslint": "^5.15.3",
|
||||
"eslint-config-prettier": "^4.1.0",
|
||||
"eslint-plugin-import": "^2.14.0",
|
||||
"eslint-plugin-prettier": "^3.0.1",
|
||||
"husky": "^1.3.1",
|
||||
"lint-staged": "^8.1.4",
|
||||
"eslint-config-airbnb": "^17.1.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.1.1",
|
||||
"eslint-plugin-react": "^7.11.0",
|
||||
"prettier": "^1.16.4"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user