-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1002 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
41
42
43
44
{
"name": "@photogabble/eleventy-plugin-tag-normaliser",
"version": "1.0.4",
"description": "Tag normalisation helper for 11ty",
"keywords": [
"11ty",
"eleventy",
"eleventy-plugin",
"taxonomy"
],
"main": "index.js",
"scripts": {
"test": "ava",
"test-coverage": "c8 ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photogabble/eleventy-plugin-tag-normaliser.git"
},
"author": "Simon Dann (https://photogabble.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/photogabble/eleventy-plugin-tag-normaliser/issues"
},
"homepage": "https://github.com/photogabble/eleventy-plugin-tag-normaliser#readme",
"peerDependencies": {
"@11ty/eleventy": "*"
},
"peerDependenciesMeta": {
"@11ty/eleventy": {
"optional": true
}
},
"dependencies": {
"slugify": "^1.6.5"
},
"devDependencies": {
"ava": "^5.1.1",
"c8": "^7.12.0"
},
"directories": {
"test": "tests"
}
}