-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "node-php-process",
"version": "2.0.4",
"description": "Provides a standard for handing off processing to node and having node respond with its results.",
"main": "src/RequestProcessor.js",
"scripts": {
"test": "mocha -R spec test/*-spec.js",
"test-php": "php tests/test.php",
"watch": "npm test -- --watch"
},
"pre-commit": "npm test",
"repository": {
"type": "git",
"url": "git+https://github.com/pinguinio/node-php-process.git"
},
"keywords": [
"node",
"php"
],
"author": "Jake Wood <jwood@paradowski.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinguinio/node-php-process/issues"
},
"homepage": "https://github.com/pinguinio/node-php-process#readme",
"dependencies": {
"bluebird": "^3.4.7"
},
"devDependencies": {
"chai": "^3.5.0",
"fs-extra": "^1.0.0",
"mocha": "^3.2.0"
}
}