-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@kay.domrose/clocker",
"version": "0.2.2",
"description": "Configure and provision cloud servers, ready to deploy your docker-compose project.",
"author": {
"name": "Kay Domrose",
"email": "[email protected]"
},
"homepage": "https://github.com/KayDomrose/clocker#readme",
"keywords": [
"docker",
"docker-compose",
"terraform",
"deploy",
"Hetzner Cloud",
"hcloud"
],
"main": "build/index.js",
"scripts": {
"command": "cross-env ENVIRONMENT=local ts-node --files src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env ENVIRONMENT=production tsc && rsync -avm --include='*.sh' -f 'hide,! */' ./src/providers ./build/src && rsync -avm --include='*.tf' -f 'hide,! */' ./src/providers ./build/src",
"link": "npm link",
"release": "npx release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/KayDomrose/clocker.git"
},
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/cli-table": "^0.3.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.2.1",
"@types/minimist": "^1.2.0",
"@types/node": "^13.13.4",
"@types/prompts": "^2.0.7",
"@types/rimraf": "^3.0.0",
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"release-it": "^13.6.3",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@nelsonomuto/axios-request-timeout": "^1.0.4",
"await-spawn": "^3.0.0",
"axios": "^0.19.2",
"chalk": "^4.0.0",
"cli-table": "^0.3.1",
"dotenv": "^8.2.0",
"minimist": "^1.2.5",
"prompts": "^2.3.2",
"rimraf": "^3.0.2"
},
"bin": {
"clocker": "build/index.js"
},
"files": [
"build"
],
"jest": {
"transform": {
".ts": "ts-jest"
}
}
}