-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "eleventy-plugin-fluid",
"version": "3.0.0",
"description": "Eleventy plugin which provides common filters, shortcodes and transforms for Fluid Project websites.",
"publishConfig": {
"access": "public"
},
"main": "index.js",
"type": "module",
"scripts": {
"build": "rimraf _site && eleventy",
"coverage": "c8 -r text -r lcov -x \"test/*.js\" -x \"eleventy.config.js\" -x \"fixtures/**/*.js\" ava",
"lint": "fluid-lint-all",
"start": "rimraf _site && eleventy --serve",
"test": "ava",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-project/eleventy-plugin-fluid.git"
},
"keywords": [
"eleventy-plugin"
],
"author": "OCAD University <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fluid-project/eleventy-plugin-fluid/issues"
},
"homepage": "https://github.com/fluid-project/eleventy-plugin-fluid#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint-config-fluid": "^2.1.2",
"fluid-lint-all": "^1.2.11",
"husky": "^9.1.4",
"infusion": "^4.8.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-deflist": "^3.0.0",
"rimraf": "^6.0.1"
},
"dependencies": {
"@11ty/eleventy-utils": "^2.0.0",
"browserslist": "^4.23.3",
"esbuild": "^0.25.0",
"html-minifier-terser": "^7.2.0",
"i18n-js": "^4.5.0",
"lightningcss": "^1.26.0",
"rtl-detect": "^1.1.2"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"infusion": "^4.8.0"
},
"ava": {
"timeout": "30s"
}
}