-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
40
41
42
43
44
45
{
"name": "node-phpcgi",
"version": "0.3.7",
"description": "Execute php in node with php-cgi",
"main": "main.js",
"directories": {
"test": "test"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"express": "^4.10.1",
"koa": "^2.2.0",
"koa-static": "^3.0.0",
"serve-index": "^1.8.0",
"serve-static": "^1.12.1",
"supertest": "~0.9.0",
"webpack": "^2.3.1",
"webpack-node-externals": "^1.5.4"
},
"scripts": {
"build": "webpack --progress",
"test-koa": "node ./mock/koa.js",
"test-express": "node ./mock/app.js"
},
"repository": {
"type": "git",
"url": "git://github.com/hushicai/node-phpcgi.git"
},
"keywords": [
"node",
"php",
"cgi",
"middleware"
],
"author": "hushicai <[email protected]> (http://hushicai.com/)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hushicai/node-phpcgi/issues"
},
"homepage": "https://github.com/hushicai/node-phpcgi"
}