-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·41 lines (41 loc) · 1.46 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
35
36
37
38
39
40
41
{
"name": "aquarium-daylight-cycle-simulation",
"version": "1.0.0",
"description": "A configurable daylight cycle simulation that can simulate sunrise, midday, sunset, moonrise, moon peak, and moonset.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"pretest": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"tar": "tar --exclude='dist.tar.gz' -czvf ./dist/dist.tar.gz ./dist/* ./inputs.json ./package.json ./package-lock.json",
"tar-src": "tar --exclude='dist.tar.gz' --exclude='src.tar.gz' --exclude='node_modules' -czvf ./src.tar.gz ./*",
"untar": "tar -xzvf dist.tar.gz",
"scp": "scp ./dist/dist.tar.gz [email protected]:~/dev/adcs/dist.tar.gz",
"ssh": "ssh [email protected]",
"predeploy": "npm run build && npm run tar",
"deploy": "npm run scp",
"post-deploy": "npm run untar && npm i"
},
"author": "dlennox24",
"license": "MIT",
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"chalk": "^2.4.2",
"commander": "^9.0.0",
"core-js": "^3.8.1",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"minimist": "^1.2.5",
"onoff": "^6.0.1",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"rollup": "^2.35.1"
}
}