-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 579 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 579 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "maintenancemode",
"version": "1.2.0",
"description": "A Cloudflare Workers script for logging requests to a Discord webhook and setting up a downtime/maintenance page.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'"
},
"author": "xDrixxyz",
"license": "MIT",
"devDependencies": {
"husky": "^2.1.0",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run format",
"pre-push": "npm run format"
}
}
}