generated from markedjs/marked-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.7 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": "marked-extended-tables",
"version": "1.0.10",
"description": "extended Markdown tables for Marked.js",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./lib/index.umd.js",
"type": "module",
"keywords": [
"marked",
"extension",
"table",
"span",
"column",
"row",
"header"
],
"scripts": {
"test": "jest --verbose",
"test:cover": "jest --coverage",
"lint": "eslint --fix .",
"lint:dry": "eslint .",
"build": "rollup -c rollup.config.umd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calculuschild/marked-extended-tables.git"
},
"author": "Trevor Buckner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/calculuschild/marked-extended-tables/issues"
},
"homepage": "https://github.com/calculuschild/marked-extended-tables#readme",
"peerDependencies": {
"marked": ">=3 <16"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.2",
"babel-jest": "^29.5.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"jest-cli": "^29.7.0",
"marked": "^15.0.4",
"rollup": "^4.29.1",
"semantic-release": "^24.2.0"
}
}