generated from digshare-scripts/digshare-script-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 915 Bytes
/
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
{
"name": "digshare-ssl-cert-expiration-monitor",
"version": "0.0.0",
"license": "MIT",
"author": "vilicvane",
"exports": "./src/script.ts",
"dss": {
"schedule": "cron(0 9 * * *)"
},
"scripts": {
"3": "pnpm install && pnpm dedupe && pnpm install",
"build": "rimraf ./.bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern .",
"lint-prettier": "prettier --check .",
"test": "pnpm lint-prettier && pnpm build && pnpm lint"
},
"dependencies": {
"@digshare/script": "^0.4.3",
"tslib": "^2.6.1"
},
"devDependencies": {
"@mufan/code": "^0.2.16",
"@mufan/eslint-plugin": "^0.1.81",
"@types/node": "^20.5.0",
"eslint": "^8.47.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"run-in-every": "^0.2.0",
"typescript": "^5.1.6"
}
}