-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 960 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
{
"name": "npm-offline-registry",
"version": "0.0.9",
"description": "Super simple loca npm registry server for offline usage",
"main": "bin/www",
"directories": {
"test": "test"
},
"dependencies": {
"bluebird": "^3.3.4",
"express": "^4.13.4"
},
"devDependencies": {
"mocha": "^2.4.5"
},
"scripts": {
"test": "mocha ",
"start": "node ./bin/www"
},
"bin": {
"npm-offline-registry": "./bin/www",
"npm-offline-install": "./bin/npm-offline-install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harish2704/npm-offline-registry.git"
},
"keywords": [
"registry",
"offline",
"npm",
"cache"
],
"author": {
"name": "Harish.K",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/harish2704/npm-offline-registry/issues"
},
"homepage": "https://github.com/harish2704/npm-offline-registry#readme"
}