-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.59 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
{
"name": "zignis",
"version": "1.8.24",
"description": "A tool to speed up building applications",
"keywords": [
"cli",
"command"
],
"repository": {
"type": "git",
"url": "https://github.com/zhike-team/zignis"
},
"license": "MIT",
"bin": {
"zignis": "lib/main.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"chalk": "^2.4.2",
"co": "^4.6.0",
"dayjs": "^1.8.16",
"debug": "^4.1.1",
"dumper.js": "^1.3.1",
"envinfo": "^7.4.0",
"find-up": "^4.1.0",
"fs-extra": "^8.1.0",
"fuzzy": "^0.1.3",
"get-stdin": "^7.0.0",
"glob": "^7.1.4",
"inquirer": "^7.0.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"json-colorizer": "^2.2.1",
"json-stringify-pretty-compact": "^2.0.0",
"lodash": "^4.17.15",
"node-cache": "^4.2.1",
"node-emoji": "^1.10.0",
"node-object-hash": "^2.0.0",
"randomatic": "^3.1.1",
"repl.history": "^0.1.4",
"shelljs": "^0.8.3",
"table": "^5.4.6",
"update-notifier": "^3.0.1",
"yargs": "^14.0.0",
"yargs-parser": "^15.0.1"
},
"devDependencies": {
"@types/co": "^4.6.2",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^8.0.0",
"@types/get-stdin": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.141",
"@types/node": "^12.7.9",
"@types/node-cache": "^4.1.3",
"@types/node-emoji": "^1.8.1",
"@types/shelljs": "^0.8.5",
"@types/table": "^4.0.7",
"@types/update-notifier": "^2.5.0",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rimraf": "^3.0.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"vuepress": "^1.2.0"
},
"scripts": {
"zignis": "node lib/main.js",
"watch": "tsc -w",
"build": "tsc",
"clean": "rimraf lib",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"docs:typedoc": "mkdir -p doc/.vuepress/public/typedoc && typedoc src/common",
"docs:dev": "npm run docs:typedoc && vuepress dev doc",
"docs:build": "npm run docs:typedoc && vuepress build doc"
},
"rc": {
"commandDir": "lib/commands",
"commandMakeDir": "src/commands",
"hookDir": "lib/hooks",
"pluginDir": "lib/plugins",
"pluginMakeDir": "src/plugins"
},
"engines": {
"node": ">=8.10.0"
}
}