forked from glayzzle/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "php-parser",
"version": "0.1.1",
"description": "PHP parser",
"main": "main.js",
"scripts": {
"bench": "node --expose-gc bin/bench.js",
"test": "node --stack-size=5000 bin/test.js -r -d test/",
"cover": "node --stack-size=5000 node_modules/istanbul/lib/cli.js cover -x \"**/bin/**\" bin/test.js -- -r -d test/ -m test/functional/",
"mocha": "node node_modules/mocha/bin/mocha test/functional --stack-size=5000"
},
"repository": {
"type": "git",
"url": "https://github.com/glayzzle/php-parser"
},
"bugs": {
"url": "https://github.com/glayzze/php-parser/issues"
},
"homepage": "https://github.com/glayzzle/php-parser",
"keywords": [
"php",
"parser",
"ast"
],
"author": "Ioan CHIRIAC",
"license": "BSD-3-Clause",
"contributors": [
{
"name": "Anthony Terrien",
"url": "http://anthonyterrien.com/"
}
],
"devDependencies": {
"coveralls": "2.x",
"istanbul": "0.3.x",
"jison": "^0.4.15",
"jison-lex": "~0.3.4",
"lex-parser": "~0.1.4",
"memwatch-next": "^0.3.0",
"mocha": "^2.0.1",
"should": "^8.3.0"
}
}