-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.89 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.89 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "php-embed",
"description": "Bidirectional interoperability between PHP and Node.js in a single process",
"version": "0.5.3-git",
"homepage": "http://github.com/cscott/node-php-embed",
"author": "C. Scott Ananian <cscott@cscott.net>",
"main": "lib/index",
"bin": {
"php-embed": "./bin/php-embed.js"
},
"keywords": [
"php",
"hhvm"
],
"repository": {
"type": "git",
"url": "cscott/node-php-embed"
},
"license": "PHP-3.01",
"scripts": {
"configure": "node-pre-gyp configure",
"build": "node-pre-gyp build",
"debug-build": "node-pre-gyp --debug build",
"rebuild": "node-pre-gyp rebuild",
"debug-rebuild": "node-pre-gyp --debug rebuild",
"mocha": "mocha",
"jslint": "jshint . && jscs .",
"jscs-fix": "jscs --fix .",
"cpplint": "scripts/cpplint.py --root=src src/*.h src/*.cc",
"lint": "npm run jslint && npm run cpplint",
"test": "npm run lint && npm run mocha",
"valgrind": "valgrind --trace-children=yes --leak-check=full node --gc_interval=1 node_modules/.bin/_mocha --timeout 0",
"install": "node-pre-gyp install --fallback-to-build",
"gh-publish": "scripts/publish.js",
"clean": "rm -rf node_modules lib/binding build"
},
"binary": {
"module_name": "node_php_embed",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"host": "https://github.com",
"remote_path": "/cscott/node-php-embed/releases/download/{version}/"
},
"engines": {
"node": ">=2.4.0"
},
"dependencies": {
"nan": "~2.1.0",
"node-pre-gyp": "~0.6.11",
"prfun": "~2.1.1"
},
"bundleDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"jscs": "~2.5.0",
"jshint": "~2.8.0",
"mocha": "~2.3.3",
"readable-stream": "~2.0.2",
"segfault-handler": "git+https://github.com/cscott/node-segfault-handler#any-signal",
"should": "~7.1.0",
"should-http": "0.0.4"
}
}