-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 KB
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
{
"name": "markdown-it-gridtables",
"version": "0.6.0",
"description": "MarkdownIt plugin for Pandoc Grid Tables",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"dependencies": {
"markdown-it": "^13.0.1",
"wcwidth": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/markdown-it": "^12.2.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/wcwidth": "^1.0.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "rimraf .nyc_output coverage dist",
"build": "tsc",
"test": "mocha --require ts-node/register --require source-map-support/register --recursive 'test/**/*.spec.ts'",
"coverage": "nyc npm run test"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov",
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/basverweij/markdown-it-gridtables.git"
},
"keywords": [
"markdown-it",
"plugin",
"gridtables"
],
"author": "Bas Verweij",
"license": "MIT",
"bugs": {
"url": "https://github.com/basverweij/markdown-it-gridtables/issues"
},
"homepage": "https://github.com/basverweij/markdown-it-gridtables#readme"
}