-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.27 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.27 KB
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
{
"name": "zation",
"version": "3.0.0-pre-alpha.1",
"license": "SEE LICENSE IN <README.md>",
"description": "CLI tool for the Zation framework.",
"scripts": {
"prepare": "npm run build",
"build": "npm run compile",
"compile": "rm -rf out/ && tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"install": "node out/welcome.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ZationServer/zation.git"
},
"author": {
"name": "Ing. Luca Gian Scaringella",
"email": "lucacode1@gmail.com"
},
"files": [
"out/**/*",
"templates/**/*",
"assets/**/*",
"!.DS_Store"
],
"keywords": [
"esay",
"application",
"websocket",
"http",
"fast",
"server",
"realtime",
"cluster",
"scalable",
"secure",
"big",
"tools",
"zation"
],
"dependencies": {
"commander": "^9.3.0",
"empty-dir": "1.0.0",
"fs-extra": "^10.1.0",
"is-windows": "^1.0.2",
"minimist": "^1.2.6",
"terminal-kit": "^2.4.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/empty-dir": "^2.0.1",
"@types/commander": "^2.12.2",
"@types/terminal-kit": "^1.34.0",
"typescript": "^4.7.4"
},
"bin": {
"zation": "out/cli.js"
}
}