-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 1.04 KB
/
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": "node-fastcgi",
"version": "2.0.0",
"description": "Create FastCGI applications in node. Near drop-in replacement for node's http module.",
"keywords": [
"fcgi",
"fastcgi",
"server"
],
"homepage": "https://github.com/fbbdev/node-fastcgi#readme",
"author": {
"name": "Fabio Massaioli",
"email": "fabio.massaioli@gmail.com"
},
"license": "MIT",
"main": "./index.js",
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"fastcgi-stream": "1.x"
},
"repository": {
"type": "git",
"url": "https://github.com/fbbdev/node-fastcgi"
},
"devDependencies": {
"chai": "4.x",
"fcgi-handler": "git+https://github.com/aredridel/fcgi-handler.git#afe16eae560280d5dd84241d0c45e5db0f939d25",
"mocha": "10.x",
"mocha-lcov-reporter": "1.x",
"node-fetch": "3.x",
"nyc": "15.x"
},
"scripts": {
"test": "mocha --exit",
"coverage": "nyc --reporter=lcov npm test"
}
}