forked from tgrosinger/md-advanced-tables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.25 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
{
"name": "@tgrosinger/md-advanced-tables",
"version": "3.2.4",
"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": {
"lint": "eslint src --ext .ts --fix",
"test": "mocha -r ts-node/register 'test/*.ts'",
"cover": "nyc -r html -r text npm test",
"build": "tsc",
"clean": "rimraf .nyc_output coverage dist doc",
"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": {
"@rollup/plugin-typescript": "6.1.0",
"@types/chai": "4.2.14",
"@types/expect": "24.3.0",
"@types/lodash": "4.14.165",
"@types/mocha": "8.0.3",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "4.2.0",
"esdoc": "^1.1.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "7.12.1",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-chai-friendly": "0.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-simple-import-sort": "5.0.3",
"mocha": "8.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^11.7.1",
"rimraf": "^2.6.2",
"rollup": "2.33.0",
"ts-node": "9.0.0",
"tslib": "2.0.3",
"typescript": "4.0.5"
},
"dependencies": {
"ebnf": "1.9.0",
"lodash": "4.17.20",
"meaw": "^4.3.0"
}
}