-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 766 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 766 Bytes
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
{
"name": "@jswork/domain-ip-cli",
"version": "1.0.0",
"description": "Find the fastest IP addresses for a given domain.",
"type": "module",
"bin": {
"dic": "./bin/index.js"
},
"scripts": {
"release": "release-it",
"prepare": "husky install",
"pretty": "prettier --write bin"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run pretty"
]
},
"keywords": [
"domain-ip-cli",
"javascript",
"templates"
],
"license": "MIT",
"devDependencies": {
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4"
},
"dependencies": {
"@jswork/next": "^1.2.2",
"@jswork/next-param": "^1.0.12",
"clipboardy": "^4.0.0",
"commander": "^11.1.0",
"load-json-file": "^7.0.1"
}
}