-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.47 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-asciidoc",
"version": "4.0.2",
"description": "Adds support for AsciiDoc to Eleventy",
"main": ".eleventy.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 <[email protected]> (https://saneef.com/)",
"license": "MIT",
"11ty": {
"compatibility": ">=1.0.0"
},
"dependencies": {
"@asciidoctor/core": "^3.0.4",
"debug": "^4.3.4",
"gray-matter": "^4.0.3",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"ava": "^6.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo-space": "^0.35.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix --ignore-pattern \"!.eleventy.js\"",
"*.{js,md,json}": "prettier --write"
},
"ava": {
"files": [
"tests/**/*",
"!tests/fixtures/",
"!tests/utils.js"
],
"watchMode": {
"ignoreChanges": [
"tests/output/**"
]
}
}
}