-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 957 Bytes
/
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
{
"name": "php-runtime",
"version": "0.5.1",
"description": "Runtime in order to execute transpiled PHP code into NodeJS/Javascript",
"main": "src/index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha test --stack-size=5000",
"cover": "node --stack-size=5000 node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glayzzle/php-runtime.git"
},
"keywords": [
"php",
"runtime"
],
"author": "Ioan CHIRIAC",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/glayzzle/php-runtime/issues"
},
"homepage": "https://github.com/glayzzle/php-runtime#readme",
"dependencies": {
"php-parser": "^2.0.0-pre4",
"php-transpiler": "^0.1.0"
},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"php-core": "^1.1.0",
"should": "^11.1.2"
}
}