mirror of https://github.com/Wilfred/difftastic/
45 lines
986 B
JSON
45 lines
986 B
JSON
{
|
|
"name": "tree-sitter-css",
|
|
"version": "0.20.0",
|
|
"description": "CSS grammar for tree-sitter",
|
|
"main": "bindings/node",
|
|
"keywords": [
|
|
"parser",
|
|
"lexer",
|
|
"css"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tree-sitter/tree-sitter-css.git"
|
|
},
|
|
"author": "Max Brunsfeld",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"nan": "^2.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": ">=5.16.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"tree-sitter-cli": "^0.20.8"
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate && node-gyp build",
|
|
"lint": "eslint grammar.js",
|
|
"parse": "tree-sitter parse",
|
|
"test": "tree-sitter test && tree-sitter parse examples/*.css --quiet --time",
|
|
"test-windows": "tree-sitter test"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.css",
|
|
"file-types": [
|
|
"css"
|
|
],
|
|
"injection-regex": "^css$",
|
|
"highlights": [
|
|
"queries/highlights.scm"
|
|
]
|
|
}
|
|
]
|
|
}
|