-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.37 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
77
78
79
80
81
82
{
"name": "metalsmith-html-glob",
"version": "2.0.3",
"description": "A Metalsmith plugin to apply glob patterns within HTML.",
"keywords": [
"metalsmith",
"metalsmith-plugin",
"plugin"
],
"homepage": "https://github.com/emmercm/metalsmith-plugins/tree/main/packages/metalsmith-html-glob#readme",
"bugs": {
"url": "https://github.com/emmercm/metalsmith-plugins/issues"
},
"license": "GPL-3.0-or-later",
"author": "Christian Emmer",
"type": "module",
"files": [
"dist",
"!**/test/**",
"!**/*.test.*",
"!**/jest.*"
],
"main": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmercm/metalsmith-plugins.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc --build --verbose",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --verbose && eslint .",
"test:update": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --coverage --updateSnapshot",
"test:watch": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --verbose --coverage",
"prepack": "npm run build && cp -f ../../LICENSE ./",
"postpack": "rm ./LICENSE"
},
"dependencies": {
"cheerio": "^1.0.0",
"deepmerge": "^4.3.1"
},
"peerDependencies": {
"metalsmith": "^2.5.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"assert-dir-equal": "1.1.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"metalsmith": "^2.6.3",
"prettier": "^3.3.3",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"//engines": [
"Requires ^12.20.0 || ^14.13.1 || >=16.0.0 for ES6 modules.",
"Requires >=18.17.0 for cheerio v1.0.0."
],
"engines": {
"node": ">=18.17.0"
}
}