-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.45 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "eleventy-plugin-asciidoc",
"version": "5.1.0",
"description": "Adds support for AsciiDoc to Eleventy",
"main": "index.js",
"funding": "https://github.com/sponsors/saneef/",
"repository": {
"type": "git",
"url": "git+https://github.com/saneef/eleventy-plugin-asciidoc.git"
},
"scripts": {
"lint": "eslint lib/**.js tests/**.js",
"test": "nyc ava -v --color",
"prepare": "husky install"
},
"keywords": [
"asciidoc",
"asciidoctor",
"eleventy",
"11ty",
"eleventy-plugin"
],
"author": "Saneef Ansari <hello@saneef.com> (https://saneef.com/)",
"license": "MIT",
"11ty": {
"compatibility": ">=2.0.0-canary.19"
},
"dependencies": {
"@asciidoctor/core": "^3.0.4",
"debug": "^4.4.0",
"gray-matter": "^4.0.3",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"ava": "^6.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-xo-space": "^0.35.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nyc": "^17.1.0",
"prettier": "^3.5.2",
"rimraf": "^6.0.1"
},
"lint-staged": {
"*.{js,mjs,cjs}": "eslint --cache --fix",
"*.{js,md,json}": "prettier --write"
},
"ava": {
"files": [
"tests/**/*",
"!tests/fixtures/",
"!tests/utils.js"
],
"watchMode": {
"ignoreChanges": [
"tests/output/**"
]
}
}
}