-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.33 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
{
"name": "fool-deploy",
"license": "MIT",
"version": "0.1.0",
"main": "dist/index.js",
"author": "thomas-void0",
"module": "dist/index.js",
"description": "a fast deploy your web project in linux server",
"repository": "https://github.com/thomas-void0/fool-deploy",
"homepage": "https://github.com/thomas-void0/fool-deploy#readme",
"keywords": [
"deploy",
"nginx",
"docker",
"web deploy",
"前端部署",
"部署"
],
"engines": {
"node": ">=10"
},
"bin": {
"fool": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"husa": "node ./dist/index.js"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": false,
"clean": true
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/shelljs": "^0.8.11",
"conventional-changelog-cli": "^2.2.2",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tsup": "^6.7.0",
"typescript": "^5.0.2"
},
"dependencies": {
"jest": "^29.5.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.0.5"
}
}