-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 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
56
{
"name": "linklocal",
"version": "2.8.2",
"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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"npm": "5.0.4",
"nyc": "^11.5.0",
"standard": "^11.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.9.0"
},
"dependencies": {
"commander": "^2.15.0",
"debug": "^3.1.0",
"map-limit": "0.0.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2"
},
"bin": {
"linklocal": "bin/linklocal.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+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"
]
}
}