-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
67 lines (67 loc) · 1.63 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"bin": "./src/bin/index.js",
"type": "module",
"dependencies": {
"bluebird": "^3.7.2",
"deadlink": "^1.1.3",
"filesize": "^10.1.4",
"get-urls": "^12.1.0",
"gitinfo": "^2.4.0",
"glob": "^10.4.4",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"markdown-contents": "^1.0.11",
"marked": "^13.0.2",
"moment": "^2.30.1",
"stack-trace": "^0.0.10",
"yargs": "^17.7.2"
},
"description": "Github markdown preprocessor.",
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"c8": "^10.1.2",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"coveralls": "^3.1.1",
"eslint": "~8.57.0",
"eslint-config-canonical": "~42.0.0",
"husky": "^9.0.11",
"mocha": "^10.6.0",
"nock": "^13.5.4",
"semantic-release": "^24.0.0",
"sinon": "^18.0.0"
},
"keywords": [
"github",
"markdown",
"table of contents",
"toc",
"include",
"variable",
"transclusion"
],
"license": "BSD-3-Clause",
"main": "./src/index.js",
"name": "gitdown",
"repository": {
"type": "git",
"url": "https://github.com/gajus/gitdown"
},
"engines": {
"node": ">=18"
},
"scripts": {
"binary": "./src/bin/index.js",
"prepare": "husky",
"create-readme": "./src/bin/index.js ./.README/README.md --output-file ./README.md",
"lint": "eslint --report-unused-disable-directives ./src ./tests",
"test": "c8 mocha \"./tests/**/*.js\" --timeout 9000"
},
"version": "4.1.1"
}