-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "antmarky",
"version": "1.0.0-beta.2",
"description": "Antmarky is a static-site generator for Asciidoctor based on Node.js and EJS",
"main": "server.js",
"scripts": {
"build:tsc": "tsc -p tsconfig.json",
"dev": "nodemon src/server.ts",
"build": "ts-node src/index.ts",
"lint": "semistandard",
"test": "jest",
"bump": "node bump-version.js",
"changelog": "auto-changelog --handlebars-setup .changelog/helper.js --template .changelog/changelog-template.hbs --commit-limit false"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"lcov",
"text"
]
},
"semistandard": {
"ignore": [
"test/"
]
},
"engines": {
"node": ">=16.7.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@fastify/static": "^6.8.0",
"@fastify/view": "^7.4.1",
"@jest/globals": "^29.4.1",
"@types/ejs": "^3.1.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.11.17",
"asciidoctor": "^2.2.6",
"auto-changelog": "^2.4.0",
"ejs": "^3.1.6",
"fastify": "^4.12.0",
"fs-extra": "^11.1.0",
"jest": "^29.4.1",
"joi": "^17.6.0",
"mock-fs": "^5.1.2",
"nodemon": "^2.0.20",
"semistandard": "^16.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}