-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "@bonitasoft/antora-detect-unused-media-extension",
"version": "1.0.0",
"type": "module",
"description": "Antora extension to detect unused media files in a Antora project.",
"repository": {
"type": "git",
"url": "https://github.com/bonitasoft/antora-detect-unused-media-extension"
},
"scripts": {
"build:js": "rm -fr lib/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh",
"build": "npm run lint && npm run test && npm run build:js",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"test": "node --test --test-reporter spec --test-reporter-destination stdout --test-reporter node-test-github-reporter --test-reporter-destination stdout",
"test:watch": "node --test --watch",
"test:cov": "node --test --experimental-test-coverage",
"prepack": "npm run build:js"
},
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"files": [
"lib/*",
"README.md"
],
"keywords": [
"antora",
"extension",
"media",
"lint"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.12.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"node-test-github-reporter": "^1.2.0",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0"
},
"dependencies": {
"@antora/content-classifier": "^3.0.0"
}
}