forked from susisu/mte-kernel
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 1.86 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
{
"name": "@tgrosinger/md-advanced-tables",
"version": "3.11.0",
"description": "A text editor independent library for advanced manipulation, formatting, and spreadsheets in markdown tables.",
"keywords": [
"markdown",
"table",
"text",
"editor",
"format",
"formatter",
"spreadsheet",
"org-mode"
],
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"eslint": "eslint src --ext .ts --fix",
"test": "mocha -r ts-node/register 'test/*.ts'",
"build": "tsc",
"repl": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgrosinger/md-advanced-tables.git"
},
"author": {
"name": "Tony Grosinger",
"email": "[email protected]",
"url": "https://github.com/tgrosinger"
},
"contributors": [
{
"name": "Susisu",
"email": "[email protected]",
"url": "https://github.com/susisu"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tgrosinger/md-advanced-tables/issues"
},
"homepage": "https://github.com/tgrosinger/md-advanced-tables#readme",
"devDependencies": {
"@types/chai": "4.2.14",
"@types/expect": "24.3.0",
"@types/lodash": "4.14.202",
"@types/mocha": "10.0.6",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"chai": "4.2.0",
"esdoc-importpath-plugin": "^1.0.2",
"eslint": "8.56.0",
"eslint-plugin-chai-friendly": "0.6.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.0.4",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-simple-import-sort": "5.0.3",
"mocha": "10.2.0",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"dependencies": {
"decimal.js": "10.4.3",
"ebnf": "1.9.1",
"lodash": "4.17.21",
"meaw": "5.0.0"
}
}