forked from zikaari/codemirror-textmate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
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": "codemirror-textmate",
"version": "1.0.0",
"description": "Textmate based tokenization for CodeMirror",
"main": "dist/index.js",
"typings": "dist/typings/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neeksandhu/codemirror-textmate.git"
},
"keywords": [
"codemirror",
"textmate",
"tm",
"tokenizer",
"highlighter"
],
"author": "Neek Sandhu <neek.sandhu@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neeksandhu/codemirror-textmate/issues"
},
"homepage": "https://github.com/neeksandhu/codemirror-textmate#readme",
"dependencies": {
"lru-cache": "^4.1.3",
"monaco-textmate": "^3.0.0",
"p-cancelable": "^1.0.0"
},
"devDependencies": {
"@types/codemirror": "0.0.65",
"@types/lru-cache": "^4.1.1",
"@types/p-cancelable": "^0.5.0",
"typescript": "^3.1.3"
},
"peerDependencies": {
"codemirror": "^5.41.0",
"onigasm": "^2.2.1"
}
}