-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 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
68
69
70
71
72
73
74
75
76
{
"name": "downdoc",
"version": "1.0.2-stable",
"description": "Rapidly down-converts AsciiDoc to Markdown. Often used to prepare an AsciiDoc README for npm packaging.",
"license": "MIT",
"author": "Dan Allen",
"contributors": [
"Dan Allen <dan@opendevise.com>"
],
"repository": "https://github.com/opendevise/downdoc",
"bugs": {
"url": "https://github.com/opendevise/downdoc/issues"
},
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"coverage": "nyc _mocha",
"build": "npm test && npm run lint",
"format": "node npm/format.js lib,test,npm",
"lint": "eslint \"{lib,test,npm}/**/*.js\"",
"postpublish": "downdoc --postpublish",
"prepublishOnly": "downdoc --prepublish",
"test": "_mocha",
"version": "node npm/version.js"
},
"bin": {
"downdoc": "bin/downdoc"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"imports": {
"#cli": "./lib/cli.js"
},
"files": [
"lib"
],
"workspaces": [
"."
],
"keywords": [
"asciidoc",
"markdown",
"converter"
],
"devDependencies": {
"chai": "~4.3",
"chai-fs": "~2.0",
"chai-string": "~1.5",
"dirty-chai": "~2.0",
"eslint": "~8.45",
"eslint-config-standard": "~17.1",
"mocha": "~10.2",
"nyc": "~15.1",
"prettier-eslint": "~15.0"
},
"nyc": {
"all": true,
"branches": 100,
"cacheDir": "node_modules/.cache/nyc",
"checkCoverage": true,
"include": [
"lib/**/*.js"
],
"lines": 100,
"reporter": [
"cobertura",
"lcov",
"text"
],
"reportDir": "reports"
}
}