forked from tree-sitter/node-tree-sitter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 845 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
{
"name": "tree-sitter",
"version": "0.20.6",
"description": "Incremental parsers for node",
"author": "Max Brunsfeld",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/tree-sitter/node-tree-sitter.git"
},
"keywords": [
"parser",
"lexer"
],
"main": "index.js",
"types": "tree-sitter.d.ts",
"dependencies": {
"nan": "^2.18.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"@types/node": "^20.5.9",
"chai": "^4.3.8",
"jest": "^24.0.0",
"mocha": "^8.4.0",
"node-gyp": "^9.4.0",
"prebuild": "^12.0.0",
"tree-sitter-javascript": "https://github.com/tree-sitter/tree-sitter-javascript.git#master"
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"build": "node-gyp build",
"test": "mocha && jest"
}
}