-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
38 lines (38 loc) · 1.24 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
{
"name": "markdown-it-highlightjs",
"version": "4.2.0",
"description": "Preset to use highlight.js with markdown-it.",
"keywords": [
"markdown-it-plugin"
],
"license": "Unlicense",
"author": "Val (https://val.codejam.info)",
"types": "types/index.d.ts",
"repository": "valeriangalliat/markdown-it-highlightjs",
"scripts": {
"build": "esbuild src/*.ts --format=cjs --outdir=dist",
"lint": "ts-standard src/*.ts test/*.js",
"prepack": "npm run prepare && npm run lint && npm run type-check && npm test && npm run test-ts-import",
"prepare": "npm run build && npm run type-declarations",
"test": "npm run build && mocha",
"test-ts-import": "ts-node test/types.ts",
"type-check": "tsc -noEmit",
"type-declarations": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly --outDir types"
},
"dependencies": {
"highlight.js": "^11.9.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.23",
"chai": "^4.3.6",
"esbuild": "^0.14.34",
"markdown-it": "^12.3.2",
"markdown-it-attrs": "^4.1.3",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"ts-standard": "^11.0.0",
"typescript": "^4.6.3"
}
}