UNPKG

2.41 kBJSONView Raw
1{
2 "name": "zignis",
3 "version": "1.8.8",
4 "description": "A tool to speed up building applications",
5 "keywords": [
6 "cli",
7 "command"
8 ],
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/zhike-team/zignis"
12 },
13 "license": "MIT",
14 "bin": {
15 "zignis": "lib/main.js"
16 },
17 "main": "lib/index.js",
18 "types": "lib/index.d.ts",
19 "dependencies": {
20 "chalk": "^2.4.2",
21 "co": "^4.6.0",
22 "dayjs": "^1.8.16",
23 "debug": "^4.1.1",
24 "dumper.js": "^1.3.1",
25 "envinfo": "^7.4.0",
26 "find-up": "^4.1.0",
27 "fs-extra": "^8.1.0",
28 "fuzzy": "^0.1.3",
29 "get-stdin": "^7.0.0",
30 "glob": "^7.1.4",
31 "inquirer": "^7.0.0",
32 "inquirer-autocomplete-prompt": "^1.0.1",
33 "json-colorizer": "^2.2.1",
34 "json-stringify-pretty-compact": "^2.0.0",
35 "lodash": "^4.17.15",
36 "node-cache": "^4.2.1",
37 "node-emoji": "^1.10.0",
38 "node-object-hash": "^2.0.0",
39 "randomatic": "^3.1.1",
40 "repl.history": "^0.1.4",
41 "shelljs": "^0.8.3",
42 "table": "^5.4.6",
43 "ts-node": "^8.4.1",
44 "update-notifier": "^3.0.1",
45 "yargs": "^14.0.0",
46 "yargs-parser": "^14.0.0"
47 },
48 "devDependencies": {
49 "@types/co": "^4.6.2",
50 "@types/debug": "^4.1.5",
51 "@types/fs-extra": "^8.0.0",
52 "@types/get-stdin": "^7.0.0",
53 "@types/glob": "^7.1.1",
54 "@types/inquirer": "^6.5.0",
55 "@types/lodash": "^4.14.141",
56 "@types/node": "^12.7.9",
57 "@types/node-cache": "^4.1.3",
58 "@types/node-emoji": "^1.8.1",
59 "@types/shelljs": "^0.8.5",
60 "@types/table": "^4.0.7",
61 "@types/update-notifier": "^2.5.0",
62 "@types/yargs": "^13.0.3",
63 "@typescript-eslint/eslint-plugin": "^2.3.2",
64 "@typescript-eslint/parser": "^2.3.2",
65 "eslint": "^6.5.1",
66 "eslint-config-standard": "^14.1.0",
67 "eslint-plugin-import": "^2.18.2",
68 "eslint-plugin-node": "^10.0.0",
69 "eslint-plugin-promise": "^4.2.1",
70 "eslint-plugin-standard": "^4.0.1",
71 "rimraf": "^3.0.0",
72 "typescript": "^3.6.3"
73 },
74 "scripts": {
75 "zignis": "node lib/main.js",
76 "build": "tsc",
77 "clean": "rimraf lib",
78 "postversion": "git push && git push --tags",
79 "prepare": "npm run clean && npm run build"
80 },
81 "rc": {
82 "commandDir": "lib/commands",
83 "commandMakeDir": "src/commands",
84 "hookDir": "lib/hooks",
85 "pluginDir": "lib/plugins",
86 "pluginMakeDir": "src/plugins"
87 },
88 "engines": {
89 "node": ">=8.10.0"
90 }
91}