-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 869 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "optimize-zwift-workout-xp",
"version": "0.0.1",
"main": "cli/index.js",
"type": "module",
"author": "Jonas Pietzsch <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node cli/index.js",
"demo": "node cli/index.js sample.zwo",
"build:pages": "rm -fr docs/ && cd web && yarn build --outDir ../docs --base '/optimize-zwift-workout-xp/'",
"prettier:write": "npx prettier --write .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"fast-xml-parser": "^4.1.3",
"lodash": "^4.17.21",
"yargs": "^17.7.1"
},
"devDependencies": {
"jest": "^29.5.0",
"prettier": "^2.8.7"
},
"description": "Optimizes Zwift workout files (.zwo) so that they leverage all kinds of XP boosting",
"repository": "https://github.com/jverhoelen/xp-optimize-zwift-workouts"
}