-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "cm-tarnation",
"license": "MPL 2.0",
"description": "An alternative parser for CodeMirror 6",
"version": "0.5.0",
"keywords": [
"wikijump",
"lezer",
"codemirror",
"parsing",
"parser",
"textmate",
"grammar",
"regex",
"regexp"
],
"scripts": {
"build": "tsc",
"lint": "eslint \"./src/**/*.ts\" --fix && prettier --write --ignore-unknown \"src/**\""
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*"
],
"browserslist": [
"supports es6-module and > 0.2% and last 2 versions",
"Firefox ESR",
"not dead",
"not ie > 0"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Monkatraz/cm-tarnation.git"
},
"bugs": "https://github.com/Monkatraz/cm-tarnation/issues",
"dependencies": {
"@codemirror/autocomplete": "^0.20.1",
"@codemirror/language": "^0.20.2",
"@codemirror/state": "^0.20.0",
"@lezer/common": "^0.16.0",
"@lezer/highlight": "^0.16.0",
"@lezer/lr": "^0.16.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@typescript-eslint/typescript-estree": "^5.25.0",
"eslint": "^8.16.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-regexp": "^1.7.0",
"eslint-plugin-tsdoc": "^0.2.16",
"prettier": "^2.6.2",
"prettier-plugin-jsdoc": "^0.3.34",
"prettier-plugin-organize-imports": "^2.3.4",
"typescript": "^4.6.4"
}
}