forked from glayzzle/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
46
{
"name": "php-parser",
"version": "2.1.0",
"description": "Parse PHP code and returns its AST",
"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": "https://github.com/glayzzle/php-parser"
},
"bugs": {
"url": "https://github.com/glayzzle/php-parser/issues"
},
"homepage": "http://glayzzle.com/php-parser/",
"keywords": [
"php",
"php5",
"php7",
"parser",
"lexer",
"tokenizer",
"ast"
],
"author": "Ioan CHIRIAC",
"license": "BSD-3-Clause",
"xo": {
"space": 2,
"envs": [
"node",
"mocha"
]
},
"devDependencies": {
"coveralls": "^2.11.15",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-documentation": "^1.2.1",
"istanbul": "0.3.x",
"mocha": "^3.2.0",
"should": "^11.2.0"
}
}