-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1 KB
/
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
41
{
"name": "npm-link-check",
"version": "5.0.1",
"description": "CLI utility that checks whether a project's current node modules tree contains npm-link'ed packages",
"main": "index.js",
"bin": "cmd.js",
"scripts": {
"test": "standard | snazzy && mocha",
"cover": "nyc npm test",
"coveralls": "nyc --reporter=lcovonly npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etpinard/npm-link-check.git"
},
"keywords": [
"npm",
"npm-link",
"version",
"publish"
],
"author": "Étienne Tétreault-Pinard",
"license": "MIT",
"bugs": {
"url": "https://github.com/etpinard/npm-link-check/issues"
},
"homepage": "https://github.com/etpinard/npm-link-check#readme",
"dependencies": {
"glob": "^8.1.0"
},
"devDependencies": {
"assert": "^2.1.0",
"coveralls": "^3.1.1",
"fs-extra": "^9.1.0",
"is-plain-object": "^3.0.1",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"snazzy": "^8.0.0",
"standard": "^14.3.4"
}
}