-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 880 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
{
"name": "servez-lib",
"version": "2.10.0",
"description": "a simple server",
"main": "lib/servez.js",
"type": "commonjs",
"scripts": {
"pre-push": "npm test",
"test": "mocha test/tests"
},
"keywords": [
"http",
"https",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/greggman/servez-lib.git"
},
"author": "Gregg Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/greggman/servez-lib/issues"
},
"homepage": "https://github.com/greggman/servez-lib#readme",
"dependencies": {
"basic-auth": "^2.0.1",
"cors": "^2.8.5",
"debug": "^4.4.0",
"express": "^4.21.2",
"secure-compare": "^3.0.1",
"selfsigned": "^2.4.1",
"serve-index": "^1.9.1",
"server-destroy": "^1.0.1"
},
"devDependencies": {
"chai": "^4.5.0",
"mocha": "^10.8.2"
}
}