-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "tree-sitter-yaml",
"version": "0.5.0",
"description": "YAML grammar for tree-sitter",
"keywords": [
"parser",
"lexer"
],
"main": "bindings/node",
"repository": "https://github.com/ikatyang/tree-sitter-yaml",
"homepage": "https://github.com/ikatyang/tree-sitter-yaml#readme",
"author": {
"name": "Ika",
"email": "[email protected]",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"test": "yarn tree-sitter test",
"prepack": "bash ./scripts/update-schema.sh && yarn tree-sitter generate",
"release": "standard-version --commit-all",
"tree-sitter": "./tree-sitter/target/release/tree-sitter"
},
"standard-version": {
"preset": "angular",
"scripts": {
"postbump": "rm -r docs && node scripts/generate-playground.js && git add docs"
}
},
"dependencies": {
"nan": "^2.14.0"
},
"devDependencies": {
"get-stdin": "^8.0.0",
"natural-orderby": "2.0.3",
"standard-version": "7.0.0"
},
"files": [
"/src/",
"/bindings/node/",
"/binding.gyp",
"/grammar.js"
]
}