-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
{
"name": "@oknesar/easy-codegen",
"description": "CLI tool for easy regeneration of code templates",
"author": "Vladyslav Rasenko",
"license": "ISC",
"repository": "https://github.com/oknesar/easy-codegen",
"version": "1.0.8",
"main": "dist/index.js",
"bin": {
"easy-codegen": "dist/cli.js",
"easy-codegen-ts": "src/ts-cli.ts"
},
"scripts": {
"test": "jest",
"prepare": "husky install",
"build": "rm -rf dist & tsc"
},
"dependencies": {
"@types/cosmiconfig": "^6.0.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.10",
"@types/prettier": "^2.3.2",
"@types/yargs": "^17.0.2",
"@types/yup": "^0.29.13",
"cosmiconfig": "^7.0.1",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"prettier": "^2.3.2",
"typescript": "^4.4.2",
"yargs": "^17.1.1",
"yup": "^0.32.9"
},
"devDependencies": {
"husky": "^7.0.0",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}