forked from BinaryMuse/node-cmark-gfm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "cmark-gfm",
"version": "0.9.0",
"description": "Node bindings to GitHub's GFM-enhanced fork of the cmark Markdown parser",
"repository": "https://github.com/BinaryMuse/node-cmark-gfm",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"install": "node-gyp-build",
"build": "node-gyp build",
"build:dev": "node-gyp build --debug",
"rebuild": "node-gyp rebuild",
"rebuild:dev": "node-gyp rebuild --debug",
"test": "mocha lib/test/helper.js lib/test/*.test.js && yarn tsd",
"update-vendor": "./script/update-vendor",
"upload": "node ./script/upload.js"
},
"keywords": [
"markdown",
"cmark",
"commonmark",
"gfm",
"cmark-gfm"
],
"author": "Michelle Tilley <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 12"
},
"tsd": {
"directory": "lib/test"
},
"binary": {
"napi_versions": [
2,
3
]
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.0.0",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-html": "^2.0.1",
"dedent": "^0.7.0",
"mocha": "^10.2.0",
"node-gyp": "^10.0.1",
"prebuildify": "^6.0.0",
"tsd": "^0.30.3",
"typescript": "^5.3.3"
}
}