-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "ssl-autoupdater",
"version": "0.1.5",
"description": "Automatically update SSL certificate on different cloud platforms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile-template": "node compile-template.js",
"build": "rm -rf dist/* dist/.[!.]* dist/..?* && tsc && tsc-alias && npm run compile-template",
"test": "npm run build && node test/index.js",
"docker": "node test/docker.js",
"docker-log": "mkdir -p /app/data/logs && node test/docker.js | tee /app/data/logs/$(date +\"%Y%m%d_%H%M%S\").log"
},
"keywords": ["auto", "SSL", "update"],
"author": "Cnily03",
"email": "cnily03@outlook.com",
"license": "MIT",
"engines": {
"node": ">=16.13.1"
},
"repository": "https://github.com/Cnily03/ssl-autoupdater",
"bugs": "https://github.com/Cnily03/ssl-autoupda/issues",
"homepage": "https://github.com/Cnily03/ssl-autoupda#readme",
"changelogs": "https://github.com/Cnily03/ssl-autoupda/releases",
"dependencies": {
"ansi-html": "^0.0.9",
"colors": "^1.4.0",
"ejs": "^3.1.9",
"nodemailer": "^6.9.9",
"qiniu": "^7.11.0",
"tencentcloud-sdk-nodejs": "^4.0.684",
"urllib": "^3.22.2"
},
"devDependencies": {
"@types/ansi-html": "^0.0.0",
"@types/ejs": "^3.1.5",
"@types/nodemailer": "^6.4.14",
"ts-loader": "^9.5.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}