-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 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
{
"name": "drygen",
"version": "0.0.5",
"description": "The code generator that depends on specific files is designed to implement a Single Source of Truth (SSOT).",
"repository": "yuheiy/drygen",
"license": "MIT",
"author": "Yuhei Yasuda <[email protected]> (https://yuheiy.com/)",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "cjs/index.d.ts",
"bin": {
"drygen": "bin/drygen.js"
},
"files": [
"bin",
"cjs",
"esm"
],
"scripts": {
"build": "tsc --project . && tsc --project ./tsconfig.module.json",
"clean": "rimraf cjs/ esm/",
"prepublishOnly": "npm run clean && npm run build",
"test": "mocha"
},
"dependencies": {
"chalk": "^4.1.1",
"change-case": "^4.1.2",
"chokidar": "^3.5.2",
"cosmiconfig": "^7.0.0",
"ejs": "^3.1.6",
"globby": "^11.0.4",
"normalize-path": "^3.0.0",
"replace-ext": "^2.0.0",
"title-case": "^3.0.3",
"yargs": "^17.0.1",
"zod": "^3.2.0"
},
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"@types/normalize-path": "^3.0.0",
"@types/replace-ext": "^2.0.0",
"@types/yargs": "^17.0.0",
"execa": "^5.1.1",
"mocha": "^9.0.1",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "^2.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=12.0.0"
}
}