-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.93 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": "asciidoc-site-generator",
"version": "2.0.0",
"description": "A static website generator using AsciiDoc files and Handlebars templates",
"license": "MIT",
"author": {
"name": "Eric Löffler",
"email": "[email protected]",
"url": "https://github.com/brettaufheber"
},
"homepage": "https://github.com/brettaufheber/asciidoc-site-generator#readme",
"bugs": {
"url": "https://github.com/brettaufheber/asciidoc-site-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettaufheber/asciidoc-site-generator.git"
},
"main": "./src/index.js",
"scripts": {
"start": "node .",
"build": "ncc build ./src/index.js -o ./dist --license licenses.txt && node ./src/makeCopyAssets.js",
"test": "jest",
"scan": "sonar-scanner"
},
"dependencies": {
"fs-extra": "^10.0.x",
"js-yaml": "^4.1.x",
"dotenv": "^16.0.x",
"commander": "^9.0.x",
"asciidoctor": "^2.2.x",
"asciidoctor-highlight.js": "^0.4.x",
"@djencks/asciidoctor-mathjax": "^0.0.x",
"handlebars": "^4.7.x",
"basic-handlebars-helpers": "^3.0.x",
"sass": "^1.49.x",
"less": "^4.1.x"
},
"devDependencies": {
"@vercel/ncc": "^0.33.x",
"jest": "^27.5.x",
"jest-sonar-reporter": "^2.0.x",
"sonarqube-scanner": "^2.8.x"
},
"jest": {
"verbose": true,
"testMatch": [
"**/test/src/**/*.test.js"
],
"testTimeout": 60000,
"testResultsProcessor": "jest-sonar-reporter",
"collectCoverage": true,
"coverageDirectory": "./tmp/coverage",
"coverageReporters": [
"json",
"lcov",
"text"
],
"collectCoverageFrom": [
"**/src/**/*.js",
"!**/node_modules/**"
]
},
"jestSonar": {
"reportPath": "./tmp",
"reportFile": "test-report.xml",
"indent": 4
},
"keywords": [
"static-site-generator",
"gh-pages",
"asciidoc",
"asciidoctor",
"handlebars"
]
}