zwiftout/package.json

29 lines
586 B
JSON

{
"name": "make-workout",
"version": "0.0.0",
"license": "GPL-3.0-or-later",
"scripts": {
"lint:ts": "tsc --no-emit",
"test": "ts-node src/index.ts examples/threshold-pushing.txt",
"format:js": "prettier --write src/"
},
"devDependencies": {
"@types/node": "^14.10.3",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write --"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}