-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 918 Bytes
/
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
{
"name": "metalsmith-moment",
"version": "5.0.0",
"description": "Metalsmith plugin to convert a set of file metadata to moment date objects",
"main": "moment.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run lint && mocha tests",
"lint": "prettier -c . && eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpobel/metalsmith-moment.git"
},
"keywords": [
"metalsmith",
"plugins"
],
"author": "Damien Pobel",
"license": "MIT",
"bugs": {
"url": "https://github.com/dpobel/metalsmith-moment/issues"
},
"homepage": "https://github.com/dpobel/metalsmith-moment",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"moment": "^2.22.1"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"eslint": "^9.1.1",
"globals": "^15.1.0",
"mocha": "^10.0.0",
"prettier": "^3.1.1"
}
}