generated from markedjs/marked-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "marked-custom-heading-id",
"version": "2.0.11",
"description": "marked extension template",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./lib/index.umd.js",
"type": "module",
"files": [
"lib/",
"src/"
],
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs"
}
},
"keywords": [
"marked",
"extension",
"custom",
"heading",
"id"
],
"scripts": {
"test": "jest --verbose",
"test:cover": "jest --coverage",
"lint": "eslint .",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/marked-custom-heading-id.git"
},
"author": "Tony Brix <[email protected]> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/marked-custom-heading-id/issues"
},
"homepage": "https://github.com/markedjs/marked-custom-heading-id#readme",
"peerDependencies": {
"marked": ">=1 <16"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@markedjs/eslint-config": "^1.0.7",
"@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.1",
"babel-jest": "^29.7.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"jest-cli": "^29.7.0",
"marked": "^15.0.0",
"rollup": "^4.25.0",
"semantic-release": "^24.2.0"
}
}