-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"dependencies": {
"@haibun/core": "1.13.6",
"@root/acme": "^3.1.0",
"acme-dns-01-cloudflare": "^1.2.5",
"acme-http-01-webroot": "^3.0.0",
"greenlock": "^4.0.4",
"greenlock-store-fs": "^3.2.2",
"prettier": "^2.3.1",
"ssl-checker": "^2.0.7"
},
"name": "@haibun/https",
"version": "1.13.6",
"description": "test https, renew letsencrypt certs with greenlock",
"main": "build/https-stepper.js",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.14",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.0.0"
},
"scripts": {
"test": "jest --config jest.config.ts",
"test-watch": "jest --watch --config jest.config.ts",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.json --ext .ts,.js src",
"test-haibun": "build/cli.js test/projects/web",
"coverage": "jest --config jest.config.ts --coverage",
"build": "tsc -b .",
"tsc-watch": "tsc --watch",
"tsc": "tsc",
"prepare": "npm run build",
"prepublishOnly": "tsc -b .",
"preversion": "npm run lint"
},
"author": "",
"license": "ISC"
}