-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 954 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
{
"name": "domain-scout",
"version": "0.1.0",
"description": "A teeny tiny CLI application to find available domains.",
"main": "index.js",
"bin": {
"domain-scout": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"install-global": "npm run build && npm install -g ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TehBrian/domain-scout.git"
},
"keywords": [
"cli"
],
"author": "TehBrian",
"license": "MIT",
"bugs": {
"url": "https://github.com/TehBrian/domain-scout/issues"
},
"homepage": "https://github.com/TehBrian/domain-scout#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.0.0",
"node-fetch": "^2.6.7",
"typescript": "^4.3.2"
},
"devDependencies": {
"@tsconfig/node16": "1.0.3",
"@types/node": "16.11.55"
}
}