-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tdf-cli",
"version": "1.0.15",
"private": false,
"description": "TOTVS Developer Framework CLI",
"type": "commonjs",
"types": "build/types/types.d.ts",
"bin": {
"tdf": "bin/tdf-cli"
},
"scripts": {
"clean-build": "rimraf -rf ./build",
"compile": "tsc -p .",
"copy-templates": "copyfiles -a -f ./src/templates/* ./build/templates",
"build": "yarn clean-build && yarn compile && yarn copy-templates",
"prepublishOnly": "yarn build",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"postinstall": "node ./bin/tdf-cli"
},
"files": [
"build",
"LICENSE",
"readme.md",
"docs",
"bin",
".gitignore"
],
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.16",
"axios": "^1.7.7",
"chalk": "^4.1.2",
"enquirer": "^2.4.1",
"gluegun": "^5.2.0",
"iconv-lite": "^0.6.3"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"copyfiles": "^2.4.1",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}