-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 920 Bytes
/
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
{
"name": "tutorial",
"version": "1.0.0",
"description": "Learning for Docker and Kubernetes",
"main": "README-GENERATOR.js",
"scripts": {
"prestart": "tsc -p tsconfig.json",
"start": "node dist/readme.generator.js",
"dev": "tsc-watch --onSuccess \"node dist/readme.generator.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/unchaptered/docker-and-kubernetes.git"
},
"keywords": [],
"author": {
"name": "unchaptered <MinSeok, Lee>",
"email": "[email protected]",
"url": "https://www.linkedin.com/feed/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/unchaptered/docker-and-kubernetes/issues"
},
"homepage": "https://github.com/unchaptered/docker-and-kubernetes#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"typescript": "^4.9.4"
},
"dependencies": {
"tsc-watch": "^6.0.0"
}
}