-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.48 KB
/
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
27
28
29
30
31
32
33
34
{
"name": "practicerowingcommands",
"version": "5.11.2",
"description": "practice rowing commands",
"main": "index.js",
"dependencies": {
"gzipper": "^7.2.0",
"mustache": "^4.2.0"
},
"devDependencies": {},
"scripts": {
"compress": "gzipper compress ./bin/html/index.wasm --brotli ",
"updatehtml": "mustache package.json template/index.html > bin/html/index.html",
"copyjs": "mustache package.json template/index.js > bin/html/index.js",
"build": "npm run compress && npm run updatehtml && npm run copyjs",
"deploy": "rsync -rvu --exclude \".*\" bin/html/ /Volumes/www.vangulik.org/PracticeRowingCommands/",
"deployHD": "rsync -rvu --exclude \".*\" bin/html/ /Volumes/www.vangulik.org/PracticeRowingCommandsHD/",
"buildAndDeploy":"npm run build && npm run deploy",
"buildAndDeployHD":"npm run build && npm run deployHD",
"createzip":"rm distribute.zip && cd ./bin/html && zip -vr ../../distribute.zip . -x \"*.DS_Store\" -q ",
"prepare-git-commit":"cp src/calcSecurityCodeForGit.gd src/calcSecurityCode.gd && npm run createzip ",
"prepare-build":"cp src/calcSecurityCodeDoNotCommit.gd src/calcSecurityCode.gd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tijmenvangulik/PracticeRowingCommands.git"
},
"author": "Tijmen van Gulik",
"license": "GNU",
"bugs": {
"url": "https://github.com/tijmenvangulik/PracticeRowingCommands/issues"
},
"homepage": "https://www.vangulik.org/PracticeRowingCommands/"
}