-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 961 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-cel",
"version": "0.0.1",
"description": "Tree Sitter Parser for CEL",
"main": "bindings/node",
"scripts": {
"build": "npm run generate && node-gyp build",
"test": "npm run generate && npx tree-sitter test",
"test-windows": "npx tree-sitter test",
"generate": "npx tree-sitter generate",
"lint": "eslint grammar.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"nan": "^2.17.0"
},
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"tree-sitter-cli": "^0.20.8"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"semi": false,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
},
"tree-sitter": [
{
"scope": "source.cel",
"file-types": [
"cel"
]
}
]
}