-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.04 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.04 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
{
"name": "@themost/cli",
"version": "2.7.0",
"description": "CLI Tool for MOST Web Framework",
"homepage": "https://github.com/themost-framework/cli",
"repository": {
"type": "git",
"url": "https://github.com/themost-framework/cli.git"
},
"keywords": [
"most",
"web",
"cli"
],
"engines": {
"node": ">=12"
},
"author": {
"name": "Kyriakos Barbounakis",
"email": "k.barbounakis@gmail.com"
},
"licenses": [
{
"type": "BSD-3-Clause"
}
],
"bin": {
"themost": "bin/themost"
},
"scripts": {
"cli": "node bin/themost"
},
"dependencies": {
"@themost/xml": "^2.5.1",
"@xmldom/xmldom": "^0.8.7",
"async": "^2.6.0",
"easy-table": "^1.1.1",
"ejs": "^3.1.6",
"fs-extra": "^5.0.0",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"moment": "^2.11.2",
"pluralize": "^7.0.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/fs-extra": "^5.0.3",
"@types/yargs": "^11.0.0",
"assert": "^1.4.1",
"babel-eslint": "^8.0.3"
}
}