-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 940 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": "link-status",
"version": "1.2.0",
"description": "A command line tool to show you all linked modules in your current Node.js project.",
"bin": {
"link-status": "bin/link-status.js"
},
"scripts": {
"lint": "semistandard | snazzy",
"test": "npm run lint && npm run test:unit | faucet",
"test:unit": "tape ./test/*.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/danmakenoise/link-status.git"
},
"keywords": [
"npm",
"link",
"linked",
"modules",
"command",
"line"
],
"author": "Dan Phillips",
"license": "MIT",
"bugs": {
"url": "https://github.com/danmakenoise/link-status/issues"
},
"homepage": "https://github.com/danmakenoise/link-status#readme",
"devDependencies": {
"faucet": "0.0.1",
"semistandard": "^9.2.1",
"snazzy": "^5.0.0",
"tape": "^4.6.3"
},
"dependencies": {
"colors": "^1.1.2"
}
}