-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 858 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 858 Bytes
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": "hack-parser",
"version": "0.0.1",
"description": "JS Hack/HHVMParser - extract AST and tokens",
"main": "src/index.js",
"scripts": {
"test": "jest",
"cover": "jest --coverage --coverageDirectory=coverage/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glayzzle/hack-parser.git"
},
"keywords": [
"hhvm",
"hack",
"parser",
"ast",
"tokens"
],
"author": "Ioan CHIRIAC",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/glayzzle/hack-parser/issues"
},
"homepage": "https://github.com/glayzzle/hack-parser#readme",
"dependencies": {
"php-parser": "https://github.com/glayzzle/php-parser.git#29e53aa16247499ef5d8987d780d3b33ac27b538"
},
"devDependencies": {
"coveralls": "^3.0.0",
"jest": "^22.4.3",
"prettier": "^1.12.1"
}
}