-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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": "tree-sitter-eu4mod",
"version": "1.0.3",
"description": "Global parser for Europa Universalis IV grammar syntax.",
"main": "index.js",
"keywords": [
"parser",
"lexer",
"eu4",
"paradox",
"mod",
"yml",
"gfx",
"gui"
],
"author": "Richard ANDRIAN - Coyote-31 <coyotepouil@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Coyote-31/tree-sitter-eu4mod/issues"
},
"homepage": "https://github.com/Coyote-31/tree-sitter-eu4mod/#readme",
"dependencies": {
"nan": "^2.14.1"
},
"devDependencies": {
"prebuild": "^10.0.1",
"prebuild-install": "^5.3.5",
"tree-sitter-cli": "0.16.8"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"prebuild": "prebuild -t 6.1.12 -r electron",
"build": "tree-sitter generate && node-gyp build",
"test": "tree-sitter test && tree-sitter parse test/examples/* --quiet --time",
"test-windows": "tree-sitter test",
"gt": "tree-sitter generate && npm test",
"gt-gfx": "tree-sitter generate && npm test && tree-sitter parse test/private/gfx/* --quiet --time",
"gt-gui": "tree-sitter generate && npm test && tree-sitter parse test/private/gui/* --quiet --time",
"gt-yml": "tree-sitter generate && npm test && tree-sitter parse test/private/yml/* --quiet --time",
"gtb": "tree-sitter generate && npm test && node-gyp build"
},
"repository": {
"type": "git",
"url": "github:Coyote-31/tree-sitter-eu4mod"
}
}