autorestic/package.json

26 lines
737 B
JSON
Raw Normal View History

2019-06-20 23:09:33 +02:00
{
"private": true,
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"dev": "tsnd --no-notify --respawn ./src/autorestic.ts",
2020-01-23 11:09:57 +01:00
"move": "mv bin/autorestic-linux bin/autorestic_linux_x64 && mv bin/autorestic-macos bin/autorestic_macos_x64",
"bin": "yarn run build && pkg lib/autorestic.js --targets latest-macos-x64,latest-linux-x64 --out-path bin && yarn run move"
2019-06-20 23:09:33 +02:00
},
"devDependencies": {
"@types/js-yaml": "^3.12.1",
"@types/minimist": "^1.2.0",
2019-10-26 20:06:48 +02:00
"@types/node": "^12.11.7",
2019-06-20 23:09:33 +02:00
"pkg": "^4.4.0",
"ts-node-dev": "^1.0.0-pre.40",
2019-12-04 23:36:49 +01:00
"typescript": "^3.7"
2019-06-20 23:09:33 +02:00
},
"dependencies": {
"axios": "^0.19.0",
"clitastic": "0.0.1",
"colors": "^1.3.3",
"js-yaml": "^3.13.1",
"minimist": "^1.2.0",
"uhrwerk": "^1.0.0"
2019-06-20 23:09:33 +02:00
}
2020-01-23 11:09:57 +01:00
}