-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 990 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
32
33
34
35
36
37
38
39
40
{
"name": "vanish",
"version": "0.0.1",
"description": "A simple config tool to make locally trusted X.509 development certificates for you domains",
"repository": {
"type": "git",
"url": "git+https://github.com/shubhexists/vanish.git"
},
"keywords": [
"https",
"certificates",
"localhost",
"local-development",
"root-ca"
],
"scripts": {
"prepare": "husky install",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"dependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.{js,ts,json,md}": [
"prettier --write"
]
},
"author": "Shubham Singh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shubhexists/vanish/issues"
},
"type": "module",
"homepage": "https://github.com/shubhexists/vanish#readme"
}