-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 921 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
{
"name": "tree-sitter-css-in-js",
"version": "0.0.1",
"description": "css-in-js grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parsing",
"incremental"
],
"dependencies": {
"nan": "^2.18.0",
"node-gyp": "^10.0.1"
},
"devDependencies": {
"tree-sitter-cli": "^0.20.8"
},
"scripts": {
"build": "node-gyp configure && node-gyp build && tree-sitter generate",
"clone": "git clone https://github.com/tree-sitter/tree-sitter-css.git",
"go": "node-gyp configure && node-gyp build && tree-sitter generate && tree-sitter test",
"postinstall": "npm run clone",
"test": "tree-sitter test"
},
"tree-sitter": [
{
"scope": "source.css",
"file-types": [
"css"
],
"injection-regex": "^css_in_js$"
}
]
}