-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "hetzner-cdk",
"version": "0.1.9",
"description": "Hetzner Cloud Development Kit",
"author": "Timo Koenig <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/hetzner-cdk.cjs",
"module": "dist/hetzner-cdk.mjs",
"typings": "dist/hetzner-cdk.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc-watch",
"build": "rollup -c",
"start": "node dist/index.js",
"test": "export HETZNER_AUTH_TOKEN=xxx && npx jest --silent"
},
"dependencies": {
"@types/node": "^18.11.10",
"axios": "^1.2.0",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"esbuild": "^0.17.8",
"moment": "^2.29.4",
"rollup": "^3.7.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.0.3",
"yaml": "^2.2.0",
"yesno": "^0.4.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@types/cli-table": "^0.3.1",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"jest-mock-axios": "^4.7.0-beta2",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0"
},
"keywords": [
"hetzner",
"cloud",
"cdk"
],
"bugs": {
"url": "https://github.com/timokoenig/hetzner-cdk/issues"
},
"homepage": "https://github.com/timokoenig/hetzner-cdk#readme"
}