-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1 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
{
"name": "remark-tree-sitter",
"version": "1.0.3",
"description": "Highlight code in Markdown files using tree-sitter and remark",
"keywords": [
"remark-plugin",
"tree-sitter",
"remark",
"syntax-highlighting"
],
"license": "MIT",
"main": "index.js",
"types": "index.d.js",
"author": {
"name": "Sam Lanning",
"email": "sam@samlanning.com",
"url": "https://samlanning.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/samlanning/remark-tree-sitter"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-sourcemaps": "1.6.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0",
"run-sequence": "^1.2.2",
"tslint": "^5.9.1",
"typescript": "^3.5.2",
"unified": "^7.1.0"
},
"scripts": {
"build": "gulp",
"build-and-test": "gulp; yarn --cwd tests run test"
},
"dependencies": {
"tree-sitter": "^0.15.5",
"tree-sitter-hast": "^1.1.1",
"unist-util-visit": "^1.4.1"
}
}