-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.51 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
{
"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": "prebuild-install || node-gyp rebuild",
"build": "node-gyp build",
"build:dev": "node-gyp build --debug",
"rebuild": "node-gyp rebuild",
"rebuild:dev": "node-gyp rebuild --debug",
"prebuild:all": "yarn prebuild:node && yarn prebuild:electron",
"prebuild:node": "prebuild -t 12.0.0 -t 14.0.0 -t 15.0.0 -t 16.0.0 -r node",
"prebuild:electron": "prebuild -t 10.0.0 -t 11.0.0 -t 12.0.0 -r electron",
"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 <michelle@michelletilley.net>",
"license": "MIT",
"engines": {
"node": ">= 12"
},
"tsd": {
"directory": "lib/test"
},
"binary": {
"napi_versions": [
2,
3
]
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-html": "^2.0.1",
"dedent": "^0.7.0",
"mocha": "^10.0.0",
"node-gyp": "^9.0.0",
"prebuild": "^11.0.0",
"tsd": "^0.21.0",
"typescript": "^4.0.2"
}
}