This repository was 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
/
Copy pathpackage.json
112 lines (112 loc) · 2.57 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
{
"name": "sao",
"version": "0.0.0-semantic-release",
"description": "Futuristic scaffolding tool ⚔",
"repository": {
"url": "https://github.com/saojs/sao.git",
"type": "git"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!**/*.test.ts"
],
"scripts": {
"test": "npm run lint && jest",
"build": "rm -rf dist && rollup -c",
"lint": "eslint ."
},
"author": "egoist <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"@egoist/extract-zip": "^2.0.0",
"axios": "^0.19.2",
"cac": "^6.5.9",
"chalk": "^4.1.0",
"cross-spawn": "^7.0.2",
"dot-prop": "^5.2.0",
"ejs": "^3.1.2",
"enquirer": "^2.3.5",
"env-paths": "^2.2.0",
"hash-sum": "^2.0.0",
"ini": "^1.3.5",
"is-binary-path": "^2.1.0",
"jest": "^26.0.1",
"joycon": "^2.2.5",
"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",
"resolve-from": "^5.0.0",
"update-notifier": "^4.1.0",
"yarn-global": "^1.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/cross-spawn": "^6.0.2",
"@types/ejs": "^3.0.4",
"@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/update-notifier": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@zeit/ncc": "^0.22.3",
"cz-conventional-changelog": "3.2.0",
"eslint": "^7.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"rollup": "^2.19.0",
"rollup-plugin-dts": "^1.4.7",
"rollup-plugin-esbuild": "^2.1.0",
"rollup-plugin-hashbang": "^2.2.2",
"semantic-release": "^17.0.7",
"ts-jest": "^26.0.0",
"type-fest": "^0.13.1",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint --fix"
]
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"sao",
"generator",
"egoist",
"yeoman",
"template",
"scaffold",
"automation",
"kirito",
"simple",
"easy",
"workflow"
]
}