-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
45
46
47
48
49
50
51
52
{
"name": "@colin_b/cm-language-java",
"version": "0.1.0",
"description": "Java language support for CodeMirror (highlight, linter and autocomplete)",
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"prepare": "rollup -c",
"pretest": "rollup -c rollup.config.test.js",
"test": "node --enable-source-maps --trace-uncaught tests/dist/tests.cjs",
"doc": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ColinTimBarndt/cm-language-java.git"
},
"keywords": [
"java",
"codemirror",
"linter"
],
"author": "Colin Tim Barndt",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ColinTimBarndt/cm-language-java/issues"
},
"homepage": "https://github.com/ColinTimBarndt/cm-language-java#readme",
"dependencies": {
"@codemirror/lang-java": "0.*",
"@codemirror/language": "0.*",
"@codemirror/view": "0.*",
"lezer-tree": "0.*"
},
"devDependencies": {
"@rollup/plugin-multi-entry": ">=4.0.0",
"@rollup/plugin-node-resolve": ">=13.0.0",
"@rollup/plugin-strip": ">=2.0.1",
"@rollup/plugin-typescript": ">=8.2.1",
"rollup": ">=2.50.6",
"rollup-plugin-dts": ">=3.0.2",
"rollup-plugin-string": ">=3.0.0",
"rollup-plugin-terser": ">=7.0.2",
"typedoc": ">=0.20.36"
}
}