-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "@denoland-id/proxy",
"description": "Vercel proxy for denoland.id website and module registry 🔀",
"version": "0.1.0",
"repository": "[email protected]:denoland-id/proxy.git",
"author": "Griko Nibras <[email protected]>",
"scripts": {
"format": "yarn format:index && yarn format:api",
"format:index": "prettier --write \"*.{js,json,md}\"",
"format:api": "prettier --write \"api/**/*.{js,ts}\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@types/node-fetch": "^2.5.7",
"@vercel/node": "^1.7.2",
"all-contributors-cli": "^6.16.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"api/**/*.{js,ts}": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "all"
},
"license": "MIT"
}