generated from markedjs/marked-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 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
74
75
{
"name": "marked-highlight",
"version": "2.2.1",
"description": "marked highlight",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./lib/index.umd.js",
"types": "./src/index.d.ts",
"type": "module",
"keywords": [
"marked",
"extension",
"highlight"
],
"files": [
"lib/",
"src/"
],
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"test": "jest --verbose",
"test:cover": "jest --coverage",
"test:types": "tsd -t src/index.d.ts -f types_test/index.test-d.ts",
"lint": "eslint",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/marked-highlight.git"
},
"author": "Tony Brix <Tony@Brix.ninja> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/marked-highlight/issues"
},
"homepage": "https://github.com/markedjs/marked-highlight#readme",
"peerDependencies": {
"marked": ">=4 <16"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@markedjs/eslint-config": "^1.0.9",
"@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.7.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"highlight.js": "^11.11.0",
"jest-cli": "^29.7.0",
"marked": "^15.0.4",
"rollup": "^4.29.1",
"semantic-release": "^24.2.0",
"tsd": "^0.31.2"
},
"tsd": {
"compilerOptions": {
"paths": {
"marked-highlight": [
"./src"
]
}
}
}
}