forked from krakenjs/kappa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "kappa",
"version": "0.14.3",
"description": "A hierarchical npm-registry proxy to make private registries easier. (Based on npm-delegate by @jden)",
"main": "index.js",
"bin": "kappa.js",
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc index.js lib/*.js"
},
"keywords": [
"npm",
"registry",
"private",
"proxy"
],
"repository": "https://github.com/krakenjs/kappa.git",
"author": "Erik Toth <ertoth@paypal.com>",
"contributors": [
"Trevor Livingston <trlivingston@paypal.com>"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"engines": {
"node": ">=0.10.12"
},
"engineStrict": true,
"dependencies": {
"async": "~0.2.9",
"nipple": "~2.1.0",
"shortstop": "~0.0.1",
"hapi": "^2.6.0",
"minimist": "~0.0.5",
"shortstop-handlers": "~0.1.0"
},
"devDependencies": {
"nock": "~0.27.2",
"istanbul": "~0.2.4",
"jshint": "~2.4.4",
"tape": "~2.6.0"
}
}