-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 862 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
{
"name": "npm-list-linked",
"version": "0.1.0",
"description": "List linked npm packages in a project; also recursively for chains of dependencies.",
"main": "get-linked.js",
"bin": {
"npm-list-linked": "npm-list-linked.js"
},
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"npm",
"link",
"cli"
],
"author": "Kristoffer Lundén <[email protected]>",
"license": "ISC",
"dependencies": {
"fs-extra": "^3.0.1",
"glob": "^7.1.2"
},
"devDependencies": {
"eslint": "^5.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kribblo/npm-list-linked.git"
},
"bugs": {
"url": "https://github.com/kribblo/npm-list-linked/issues"
},
"homepage": "https://github.com/kribblo/npm-list-linked#readme"
}