-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 918 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
{
"name": "npm-cdn",
"version": "2.0.0",
"description": "A webservice that dishes out files from npm packages",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/zeke/npm-cdn"
},
"keywords": [
"npm",
"cdn",
"static",
"files"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/zeke/npm-cdn/issues"
},
"homepage": "https://github.com/zeke/npm-cdn",
"dependencies": {
"findit": "^2.0.0",
"handlebars": "^2.0.0",
"request": "^2.49.0",
"restify": "^2.8.3",
"superagent": "^0.21.0",
"tar-fs": "^1.4.0"
},
"devDependencies": {
"mocha": "^2.0.1",
"nixt": "^0.4.1",
"nodemon": "^1.2.1",
"rimraf": "^2.2.8",
"supertest": "^0.15.0"
}
}