-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 738 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 738 Bytes
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
{
"name": "stupid-server",
"version": "1.0.0",
"description": "A really stupid server",
"main": "lib/server.js",
"author": "Matthew Cheely",
"license": "MIT",
"bin": {
"stupid-server": "server-cli.js"
},
"dependencies": {
"commander": "^2.3.0",
"express": "^4.4.3",
"http-proxy": "^1.4.3",
"pem": "^1.8.1",
"serve-index": "^1.1.1",
"serve-static": "^1.2.3",
"simple-cookie": "0.0.7"
},
"devDependencies": {
"proxyquire": "^1.0.1",
"sinon": "^1.10.3",
"vows": "^0.7.0"
},
"scripts": {
"test": "node_modules/.bin/vows test/* --spec"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/MattCheely/stupid-server.git"
}
}