67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "strain-tools",
|
|
"version": "1.0.2",
|
|
"description": "strain tools",
|
|
"main": "index",
|
|
"module": "index.mjs",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint \"packages/*/*.{js,mjs,vue}\" \"packages/*/src/**/*.{js,mjs,vue}\"",
|
|
"precommit": "lint-staged",
|
|
"prepush": "npm run lint",
|
|
"sync-versions": "node -r esm scripts/version-sync.mjs",
|
|
"version": "npm run sync-versions && auto-changelog -p && auto-authors && git add CHANGELOG.md AUTHORS.md packages",
|
|
"start": "node .",
|
|
"dev": "nodemon --ignore db.json ."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://git.w33ble.com/w33ble/strain-tools.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "joe fleming (https://github.com/w33ble)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://git.w33ble.com/w33ble/strain-tools/issues"
|
|
},
|
|
"homepage": "https://git.w33ble.com/w33ble/strain-tools",
|
|
"auto-changelog": {
|
|
"output": "CHANGELOG.md",
|
|
"breakingPattern": "BREAKING CHANGE:",
|
|
"template": ".changelog_template.hbs",
|
|
"ignoreCommitPattern": "(chore|test):",
|
|
"commitLimit": false
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,mjs,vue}": [
|
|
"eslint --fix"
|
|
],
|
|
"*.{js,mjs,vue,json,css}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"auto-authors": "^0.1.1",
|
|
"auto-changelog": "^1.7.0",
|
|
"eslint": "^4.9.0",
|
|
"eslint-config-airbnb": "^16.1.0",
|
|
"eslint-config-prettier": "^2.9.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-jsx-a11y": "^6.0.2",
|
|
"eslint-plugin-prettier": "^2.3.1",
|
|
"eslint-plugin-react": "^7.1.0",
|
|
"husky": "^0.14.3",
|
|
"lint-staged": "^7.0.4",
|
|
"prettier": "^1.9.0"
|
|
}
|
|
}
|