-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 KB
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
{
"name": "@photogabble/eleventy-plugin-blogtimes",
"version": "1.0.0",
"description": "Blogtimes graph generator for 11ty",
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"blogtimes"
],
"main": "index.js",
"scripts": {
"test": "ava",
"test-coverage": "c8 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photogabble/eleventy-plugin-blogtimes.git"
},
"author": "Simon Dann (https://photogabble.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/photogabble/eleventy-plugin-blogtimes/issues"
},
"homepage": "https://github.com/photogabble/eleventy-plugin-blogtimes#readme",
"peerDependencies": {
"@11ty/eleventy": "*"
},
"peerDependenciesMeta": {
"@11ty/eleventy": {
"optional": true
}
},
"engines": {
"node": ">=14"
},
"dependencies": {
"bdf-canvas": "^1.0.1",
"canvas": "^2.11.0",
"git-log-parser": "^1.2.0"
},
"devDependencies": {
"ava": "^5.1.1",
"c8": "^7.12.0"
},
"directories": {
"test": "tests"
}
}