-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.16 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-reflection",
"version": "2.3.1",
"description": "Enables to parse php files and from AST extracts code informations (namespaces, classes, functions ...)",
"main": "index.js",
"scripts": {
"test": "node node_modules/mocha/bin/_mocha test/*",
"cover": "node --stack-size=5000 node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glayzzle/php-reflection.git"
},
"keywords": [
"php",
"reflection",
"code",
"analysis",
"parser"
],
"author": "Ioan CHIRIAC",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/glayzzle/php-reflection/issues"
},
"homepage": "https://github.com/glayzzle/php-reflection#readme",
"dependencies": {
"doc-parser": "^0.4.7",
"glob-to-regexp": "^0.4.0",
"grafine": "^2.0.1",
"php-parser": "^2.1.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-documentation": "^1.2.3",
"grunt-shell": "^3.0.1",
"istanbul": "^0.4.5",
"should": "^13.2.3",
"mocha": "^6.0.2"
}
}