-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
{
"name": "codemirror-lang-spreadsheet",
"version": "1.2.0",
"description": "Spreadsheet language support for CodeMirror",
"homepage": "https://github.com/luizzappa/codemirror-lang-spreadsheet",
"author": {
"name": "Luiz Eduardo Serrão Zappa",
"email": "luizzappa@hotmail.com",
"url": "https://github.com/luizzappa"
},
"keywords": [
"codemirror",
"spreadsheet",
"excel",
"syntax",
"highlight",
"autocomplete"
],
"repository": {
"type": "git",
"url": "https://github.com/luizzappa/codemirror-lang-spreadsheet"
},
"bugs": {
"url": "https://github.com/luizzappa/codemirror-lang-spreadsheet/issues"
},
"scripts": {
"clean": "rm -rf ./dist",
"test": "mocha test/test.js",
"build": "npm run clean && lezer-generator src/syntax.grammar -o src/parser && rollup -c",
"prettier-format": "prettier --config .prettierrc --write \"src/**/*.ts\"",
"prettier-check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint --ext .ts --ignore-path .eslintignore .",
"prepack": "npm run build"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"dependencies": {
"@codemirror/language": "^6.6.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
},
"devDependencies": {
"@lezer/generator": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^9.0.1",
"prettier": "^2.8.4",
"rollup": "^2.60.2",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.3.4"
},
"license": "MIT"
}