This repository was archived by the owner on Aug 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.36 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.36 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "where-is-my-node",
"version": "2.3.7",
"description": "Get Node.js location (geolocation and directory on your disk)",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "bin/index.js",
"scripts": {
"build": "rimraf bin/* && tsc -p .",
"prettier": "prettier --write 'lib/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/awesome-cli/where-is-my-node.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"node",
"location",
"disk",
"check",
"directory",
"cli"
],
"bugs": {
"url": "https://github.com/awesome-cli/where-is-my-node/issues"
},
"homepage": "https://github.com/awesome-cli/where-is-my-node#readme",
"bin": {
"where-is-my-node": "bin/index.js",
"my-node": "bin/index.js",
"wimn": "bin/index.js"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.0.0",
"figlet": "^1.5.0",
"node-fetch": "^2.6.1",
"npm-path": "^2.0.4",
"ora": "^5.2.0"
},
"devDependencies": {
"@types/figlet": "^1.2.1",
"@types/node": "^14.14.21",
"@types/node-fetch": "^2.5.8",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"lib/**/*.ts": [
"npm run prettier"
]
}
}