forked from codemirror/dev
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 3.71 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@codemirror/next",
"version": "0.15.0",
"description": "Text/code editor component",
"scripts": {
"test": "npm run test-node && node bin/selenium.js --start-server",
"test-node": "mocha text/test/test-*.js state/test/test-*.js history/test/test-*.js rangeset/test/test-rangeset.js view/test/test-heightmap.js commands/test/test-*.js language/test/test-*.js lang-javascript/test/test-*.js closebrackets/test/test-*.js search/test/test-*.js collab/test/test-*.js comment/test/test-*.js lang-xml/test/test-*.js lang-sql/test/test-*.js lang-html/test/test-*.js lang-markdown/test/test-*.js stream-parser/test/test-*.js",
"prepare": "node bin/cm.js build",
"dev": "node bin/cm.js devserver"
},
"keywords": [
"editor",
"code",
"syntax",
"highlighting"
],
"contributors": [
{
"name": "Adrian Heine",
"email": "[email protected]"
},
{
"name": "Marijn Haverbeke",
"email": "[email protected]"
}
],
"author": "Marijn Haverbeke <[email protected]>",
"type": "module",
"exports": {
"./state": "./state/dist/index.js",
"./text": "./text/dist/index.js",
"./view": "./view/dist/index.js",
"./commands": "./commands/dist/index.js",
"./history": "./history/dist/index.js",
"./collab": "./collab/dist/index.js",
"./gutter": "./gutter/dist/index.js",
"./rangeset": "./rangeset/dist/index.js",
"./language": "./language/dist/index.js",
"./language-desc": "./language-desc/dist/index.js",
"./fold": "./fold/dist/index.js",
"./matchbrackets": "./matchbrackets/dist/index.js",
"./closebrackets": "./closebrackets/dist/index.js",
"./panel": "./panel/dist/index.js",
"./tooltip": "./tooltip/dist/index.js",
"./search": "./search/dist/index.js",
"./goto-line": "./goto-line/dist/index.js",
"./lint": "./lint/dist/index.js",
"./highlight": "./highlight/dist/index.js",
"./stream-parser": "./stream-parser/dist/index.js",
"./autocomplete": "./autocomplete/dist/index.js",
"./comment": "./comment/dist/index.js",
"./rectangular-selection": "./rectangular-selection/dist/index.js",
"./highlight-selection": "./highlight-selection/dist/index.js",
"./basic-setup": "./basic-setup/dist/index.js",
"./lang-javascript": "./lang-javascript/dist/index.js",
"./lang-java": "./lang-java/dist/index.js",
"./lang-json": "./lang-json/dist/index.js",
"./lang-cpp": "./lang-cpp/dist/index.js",
"./lang-python": "./lang-python/dist/index.js",
"./lang-css": "./lang-css/dist/index.js",
"./lang-html": "./lang-html/dist/index.js",
"./lang-sql": "./lang-sql/dist/index.js",
"./lang-rust": "./lang-rust/dist/index.js",
"./lang-xml": "./lang-xml/dist/index.js",
"./lang-markdown": "./lang-markdown/dist/index.js",
"./theme-one-dark": "./theme-one-dark/dist/index.js"
},
"license": "(MIT OR GPL-3.0)",
"dependencies": {
"lezer": "^0.13.0",
"lezer-cpp": "^0.13.0",
"lezer-css": "^0.13.0",
"lezer-html": "^0.13.0",
"lezer-javascript": "^0.13.0",
"lezer-java": "^0.13.0",
"lezer-json": "^0.13.0",
"lezer-markdown": "^0.13.0",
"lezer-python": "^0.13.0",
"lezer-rust": "^0.13.0",
"lezer-tree": "^0.13.0",
"lezer-xml": "^0.13.0",
"style-mod": "^3.2.0",
"w3c-keyname": "^2.2.4"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"eslint4b-prebuilt": "^6.7.1",
"esmoduleserve": "^0.2.0",
"ist": "^1.1.6",
"lezer-generator": "^0.13.0",
"mocha": "^7.1.1",
"rollup": "^1.25.3",
"selenium-webdriver": "^4.0.0-alpha.7",
"serve-static": "^1.14.1",
"ts-node": "^8.2.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/codemirror/codemirror.next.git"
}
}