-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 909 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
36
37
38
39
40
41
42
{
"name": "tree-sitter-embedded-php",
"version": "0.0.4",
"description": "Embedded PHP grammar for tree-sitter",
"main": "index.js",
"keywords": [
"parser",
"php"
],
"author": "Clayton Carter",
"license": "MIT",
"dependencies": {
"nan": "^2.14.0"
},
"devDependencies": {
"tree-sitter-cli": "^0.17.3"
},
"scripts": {
"generate": "./node_modules/.bin/tree-sitter generate",
"test": "if [ $(stat -f %m ./grammar.js) -gt $(stat -f %m src/grammar.json) ]; then ./node_modules/.bin/tree-sitter generate; fi && ./node_modules/.bin/tree-sitter test"
},
"tree-sitter": [
{
"scope": "text.html.php",
"file-types": [
"aw",
"ctp",
"inc",
"install",
"module",
"php",
"php_cs",
"php3",
"php4",
"php5",
"phpt",
"phtml",
"profile"
]
}
]
}