-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "markdown-it-prism",
"version": "2.3.0",
"description": "Highlights code blocks in markdown-it using Prism.",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"highlight",
"prism",
"prismjs"
],
"homepage": "https://github.com/jGleitz/markdown-it-prism",
"license": "MIT",
"author": {
"name": "Joshua Gleitze",
"url": "https://joshuagleitze.de"
},
"files": [
"README.md",
"LICENSE",
"CHANGELOG.md",
"build/index.js",
"build/index.d.ts"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jGleitz/markdown-it-prism.git"
},
"scripts": {
"build:transpile": "babel ./src --out-dir build --extensions '.ts'",
"build:types": "tsc --project src",
"lint": "npm-run-all lint:*",
"lint:types": "tsc",
"lint:style": "eslint .",
"prepack": "npm-run-all build:*",
"unittest": "jest",
"test": "npm-run-all lint:* unittest"
},
"dependencies": {
"prismjs": "1.29.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@babel/register": "7.25.9",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/markdown-it": "12.2.3",
"@types/prismjs": "1.26.5",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "8.57.1",
"jest": "29.7.0",
"markdown-it": "13.0.2",
"markdown-it-attrs": "4.2.0",
"npm-run-all": "4.1.5",
"semantic-release": "21.1.2",
"typescript": "5.5.4"
}
}