This repository has been archived by the owner on Feb 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
116 lines (116 loc) · 2.79 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
{
"name": "sao",
"version": "2.0.0-beta.1",
"description": "Futuristic scaffolding tool ⚔",
"repository": {
"url": "https://github.com/saojs/sao.git",
"type": "git"
},
"main": "dist/index.js",
"bin": "cli.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"/cli.js",
"!**/*.test.ts"
],
"scripts": {
"test": "npm run lint && npm run build && jest",
"build": "rm -rf dist && tsup src/index.ts --dts",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"sao": "ts-node src/cli.ts",
"typedoc.g": "typedoc src/index.ts --readme none --mode file --out docs/typedoc --excludePrivate --excludeNotExported --theme minimal",
"release": "shipjs prepare"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@egoist/extract-zip": "^2.0.1",
"@types/cross-spawn": "^6.0.2",
"@types/ejs": "^3.0.4",
"@types/fs-extra": "^9.0.1",
"@types/hash-sum": "^1.0.0",
"@types/ini": "^1.3.30",
"@types/jest": "^25.2.2",
"@types/micromatch": "^4.0.1",
"@types/move-file": "^1.1.0",
"@types/node": "^14.0.1",
"@types/parse-package-name": "^0.1.0",
"@types/text-table": "^0.2.1",
"@types/update-notifier": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"axios": "^0.19.2",
"cac": "^6.5.13",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"cross-spawn": "^7.0.3",
"cz-conventional-changelog": "3.2.0",
"dot-prop": "^5.2.0",
"ejs": "^3.1.2",
"enquirer": "^2.3.6",
"env-paths": "^2.2.0",
"eslint": "^7.0.0",
"fs-extra": "^9.0.1",
"hash-sum": "^2.0.0",
"husky": "^4.2.5",
"ini": "^1.3.5",
"is-binary-path": "^2.1.0",
"jest": "^26.0.1",
"joycon": "^2.2.5",
"lint-staged": "^10.2.2",
"log-update": "^4.0.0",
"majo": "^0.10.1",
"micromatch": "^4.0.2",
"move-file": "^2.0.0",
"ora": "^4.0.4",
"parse-package-name": "^0.1.0",
"prettier": "^2.2.1",
"resolve-from": "^5.0.0",
"rollup": "^2.34.0",
"shipjs": "0.20.1",
"text-table": "^0.2.0",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.2",
"tsup": "^3.10.1",
"type-fest": "^0.20.2",
"typedoc": "^0.19.2",
"typescript": "^4.1.2",
"yarn-global": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"sao",
"generator",
"egoist",
"yeoman",
"template",
"scaffold",
"automation",
"kirito",
"simple",
"easy",
"workflow"
]
}