forked from LastLeaf/node-fastcgi-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 684 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "fastcgi-client",
"description": "A FastCGI client implementation in Node.js, mainly designed for cummunication with PHP.",
"author": "LastLeaf <bqfu@163.com> http://lastleaf.me",
"homepage": "https://github.com/LastLeaf/node-fastcgi-client",
"repository": { "type": "git", "url": "https://github.com/LastLeaf/node-fastcgi-client.git" },
"license": "MIT",
"version": "0.0.1",
"engines": {
"node": "^0.10.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {},
"devDependencies": {
"mocha": "^2.3.3",
"istanbul": "~0.3.21"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R spec"
}
}