forked from timoxley/linklocal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.12 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "linklocal",
"version": "2.7.0",
"description": "Install local dependencies as symlinks.",
"main": "index.js",
"scripts": {
"test": "nyc -s tape test/*.js | tap-spec && nyc report --reporter=text --reporter=html && standard"
},
"engines": {
"npm": ">=2.0.0"
},
"author": "Tim Oxley <secoif@gmail.com>",
"license": "MIT",
"devDependencies": {
"nyc": "^10.0.0",
"standard": "^8.6.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"dependencies": {
"commander": "^2.9.0",
"debug": "^2.3.3",
"map-limit": "0.0.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4"
},
"bin": {
"linklocal": "bin/linklocal.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/timoxley/linklocal.git"
},
"keywords": [
"npm",
"packages",
"symlink",
"dependencies",
"modules"
],
"bugs": {
"url": "https://github.com/timoxley/linklocal/issues"
},
"homepage": "https://github.com/timoxley/linklocal",
"nyc": {
"cache": true,
"exclude": [
"test/*.js",
"node_modules"
]
}
}