-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.79 KB
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
{
"name": "downdoc",
"version": "1.1.0-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": {
"type": "git",
"url": "git+https://github.com/opendevise/downdoc.git"
},
"bugs": {
"url": "https://github.com/opendevise/downdoc/issues"
},
"engines": {
"node": ">=16.17.0"
},
"scripts": {
"build": "npm test",
"postbuild": "npm run lint",
"coverage": "npx -y nyc node -r ./test/harness/coverage-config.js --test-reporter junit --test-reporter-destination reports/tests-xunit.xml --test test/*-test.js",
"format": "npx -y --include optional @biomejs/biome@~2.4 format --write",
"postformat": "node --disable-warning ExperimentalWarning npm/postformat.js",
"lint": "npx -y --include optional @biomejs/biome@~2.4 lint --error-on-warnings",
"postpublish": "npx downdoc --postpublish",
"prepublishOnly": "npx downdoc --prepublish",
"test": "node --test test/*-test.js",
"pretidy": "npm run lint",
"tidy": "npm run format"
},
"bin": {
"downdoc": "bin/downdoc"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"imports": {
"#cli": "./lib/cli.js"
},
"files": [
"lib"
],
"keywords": [
"asciidoc",
"markdown",
"converter"
],
"nyc": {
"branches": 100,
"cache": true,
"cacheDir": ".cache/nyc/c",
"include": [
"lib/**/*.js"
],
"exclude": [],
"functions": 100,
"lines": 100,
"reporter": [
"json",
"lcov",
"text"
],
"reportDir": "reports",
"statements": 100,
"tempDir": ".cache/nyc/i"
}
}