-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 983 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
{
"name": "dive-httpd",
"description": "Experimental HTTP server framework based on URI templates and Stream#pipe",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awwright/dive-httpd.git"
},
"author": "Austin Wright",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/awwright/dive-httpd/issues"
},
"homepage": "https://github.com/awwright/dive-httpd#readme",
"bin": {
"dive-httpd": "./bin/dive-httpd"
},
"dependencies": {
"accepts": "^1.3.8",
"chokidar": "^3.5.3",
"commander": "^9.4.0",
"dotenv": "^16.0.1",
"http-transform": "^0.0.14",
"toml": "^3.0.0",
"uri-template-router": "^0.0.16"
},
"devDependencies": {
"@stryker-mutator/core": "^6.1.2",
"@stryker-mutator/javascript-mutator": "^4.0.0",
"@stryker-mutator/mocha-framework": "^4.0.0",
"@stryker-mutator/mocha-runner": "^6.1.2",
"eslint": "^8.21.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}