-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 KB
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
{
"name": "codegrid-markdown",
"version": "7.0.0",
"description": "CodeGrid-specified markdown processor.",
"type": "module",
"main": "lib/index.js",
"types": "index.d.ts",
"files": [
"bin",
"lib",
"index.d.ts"
],
"bin": {
"cgmd": "bin/cgmd.js"
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"cheerio": "^1.2.0",
"marked": "^17.0.5"
},
"devDependencies": {
"@power-assert/node": "^0.6.0"
},
"scripts": {
"test": "node --enable-source-maps --import @power-assert/node --test",
"test:watch": "node --enable-source-maps --import @power-assert/node --test --watch",
"test:update-snapshots": "node --enable-source-maps --import @power-assert/node --test --test-update-snapshots",
"example": "node example/main.js > example/rendered.html"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pxgrid/codegrid-markdown.git"
},
"keywords": [
"markdown"
],
"author": "PixelGrid",
"contributors": [
"leader22"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pxgrid/codegrid-markdown/issues"
},
"homepage": "https://github.com/pxgrid/codegrid-markdown#readme"
}