-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
57 lines (57 loc) · 1.07 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": "marked-man",
"version": "2.1.0",
"description": "wrapper adding manpage output to 'marked', inspired by 'ronn'",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
},
"bin": {
"marked-man": "./bin/marked-man.js"
},
"files": [
"bin/",
"src/"
],
"man": [
"./man/marked-man.1"
],
"scripts": {
"test": "node ./test/compare"
},
"repository": {
"type": "git",
"url": "git://github.com/kapouer/marked-man.git"
},
"keywords": [
"markdown",
"roff",
"ronn"
],
"author": "Jérémy Lal <[email protected]>",
"license": "MIT",
"dependencies": {
"marked": "^12.0.1",
"read-pkg-up": "^11.0.0"
},
"devDependencies": {
"@kapouer/eslint-config": "^2.0.0"
},
"eslintConfig": {
"extends": "@kapouer/eslint-config",
"overrides": [
{
"files": [
"bin/*.js",
"src/*.js",
"test/*.js"
],
"parserOptions": {
"sourceType": "module"
}
}
]
}
}