-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1 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
{
"name": "metalsmith-filemetadata",
"version": "5.1.0",
"description": "Metalsmith plugin to add metadata on files based on a pattern",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha tests",
"lint": "prettier -c . && eslint ."
},
"repository": {
"type": "git",
"url": "git://github.com/dpobel/metalsmith-filemetadata.git"
},
"keywords": [
"metalsmith",
"plugin"
],
"author": "Damien Pobel <[email protected]>",
"contributors": [
"Kevin Van Lierde <[email protected]> (https://webketje.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dpobel/metalsmith-filemetadata/issues"
},
"homepage": "https://github.com/dpobel/metalsmith-filemetadata",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"minimatch": "^10.0.1"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"eslint": "^9.1.1",
"globals": "^15.1.0",
"metalsmith": "^2.3.0",
"mocha": "^10.0.0",
"prettier": "^3.1.1"
}
}