-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
132 lines (132 loc) · 3.34 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "zents-cli",
"version": "0.2.1",
"description": "ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.",
"keywords": [
"ZenTS",
"CLI",
"TypeScript",
"framework",
"typescript-framework",
"web-framework",
"REST",
"api",
"mvc",
"controller",
"template",
"service",
"orm",
"web",
"TypeORM",
"nunjucks",
"user",
"users"
],
"author": "Sascha Habbes <[email protected]>",
"license": "MIT",
"homepage": "http://zents.dev",
"repository": {
"type": "git",
"url": "https://github.com/sahachide/ZenTS-CLI"
},
"bugs": {
"url": "https://github.com/sahachide/ZenTS-CLI/issues"
},
"bin": {
"zen": "./bin/run"
},
"dependencies": {
"@oclif/command": "~1.8.0",
"@oclif/config": "~1.17.0",
"@oclif/plugin-help": "~3.2.0",
"@oclif/plugin-not-found": "~1.2.4",
"@oclif/plugin-plugins": "~1.9.0",
"@oclif/plugin-warn-if-update-available": "~1.7.0",
"browser-sync": "~2.26.12",
"chalk": "~4.1.0",
"cosmiconfig": "~7.0.0",
"execa": "~4.0.3",
"figures": "~3.2.0",
"gulp-filter": "~6.0.0",
"inquirer": "~7.3.3",
"lodash.merge": "~4.6.2",
"mkdirp": "~1.0.4",
"nodemon": "~2.0.4",
"package-json": "~6.5.0",
"portfinder": "~1.0.28",
"prettier": "^2.1.2",
"resolve-global": "~1.0.0",
"rimraf": "~3.0.2",
"through2": "~4.0.2",
"tsconfig-resolver": "~3.0.1",
"tslib": "~1.13.0",
"yeoman-environment": "~2.10.3",
"yeoman-generator": "~4.11.0",
"yosay": "~2.0.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/browser-sync": "^2.26.1",
"@types/gulp-filter": "^3.0.33",
"@types/inquirer": "^7.3.1",
"@types/lodash.merge": "^4.6.6",
"@types/mkdirp": "^1.0.1",
"@types/node": "^10.17.28",
"@types/nodemon": "^1.19.0",
"@types/prettier": "^2.1.0",
"@types/rimraf": "^3.0.0",
"@types/through2": "^2.0.36",
"@types/yeoman-generator": "^4.11.2",
"@types/yosay": "0.0.29",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"globby": "^10.0.2",
"ts-node": "^9.0.0",
"type-fest": "^0.16.0",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/templates",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"LICENSE",
"README.md"
],
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "zen",
"hooks": {
"prerun": "./lib/hooks/prerun/process.hook"
},
"topics": {
"add": {
"description": "Various ZenTS file generators. See commands for more information."
}
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7
}
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint . -f codeframe"
},
"types": "lib/index.d.ts"
}