-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 944 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "npm-ls-home",
"version": "1.0.1",
"description": "Open the npm page of the package(or subpackages) in the current directory",
"license": "MIT",
"repository": "https://github.com/Urucas/npm-ls-home",
"author": {
"name": "Bruno Alassia",
"email": "[email protected]",
"url": "https://github.com/Urucas/npm-ls-home"
},
"bin": {
"npm-ls-home": "cli.js",
"nlh": "cli.js"
},
"scripts": {
"test": "xo && ava",
"start" : "node cli.js"
},
"files": [
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"npm",
"package",
"pkg",
"page",
"home",
"open",
"cwd",
"current",
"directory",
"ls",
"list"
],
"dependencies": {
"inquirer": "^0.11.3",
"meow": "^3.7.0",
"opn": "^3.0.3",
"read-pkg-up": "^1.0.1"
},
"devDependencies": {
"ava": "*",
"execa": "^0.2.2",
"xo": "*"
},
"xo": {
"esnext": true
}
}