-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 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
72
73
74
75
76
77
78
{
"name": "twf-cli",
"version": "1.7.2",
"description": "TypeScript Web Framework CLI",
"main": "dist/index.js",
"bin": {
"twf": "bin/twf.js"
},
"files": [
"bin",
"bin/twf.js",
"dist",
"dist/Actions",
"dist/Actions/AddAction.js",
"dist/Actions/BuildAction.js",
"dist/Actions/CleanAction.js",
"dist/Actions/HelpAction.js",
"dist/Actions/InfoAction.js",
"dist/Actions/InstallAction.js",
"dist/Actions/PackageAction.js",
"dist/Actions/RestartAction.js",
"dist/Actions/RmAction.js",
"dist/Actions/ServeAction.js",
"dist/Actions/StartAction.js",
"dist/Actions/TestAction.js",
"dist/Actions/VerifyAction.js",
"dist/Helpers.js",
"dist/Action.js",
"dist/index.js",
"docs",
"docs/CLI.md",
"README.md"
],
"preferGlobal": true,
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/typescript-web-framework/twf-cli.git"
},
"author": "Olaf Erlandsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/typescript-web-framework/twf-cli/issues"
},
"homepage": "https://github.com/typescript-web-framework/twf-cli#readme",
"devDependencies": {
"@types/node": "^11.9.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-typescript": "^5.0.0",
"marked-man": "^0.2.1",
"typescript": "^2.9.2"
},
"dependencies": {
"ansi-colors": "^3.0.0",
"compare-versions": "^3.3.0",
"mkdirp": "^0.5.1",
"rxjs": "^6.2.0",
"uuid": "^3.3.2"
},
"keywords": [
"web",
"api",
"webapp",
"http",
"https",
"server",
"rest",
"reastapi",
"endpoint",
"cli",
"express",
"hmvc",
"mvc",
"ts",
"typescript"
]
}