-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "@double-great/remark-lint-alt-text",
"version": "1.1.1",
"description": "A remark-lint plugin that finds unhelpful or missing image alt text",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build",
"format": "prettier --write ."
},
"author": "@double-great",
"license": "MIT",
"dependencies": {
"@double-great/alt-text": "^3.2.1",
"unified-lint-rule": "^3.0.0",
"unist-util-visit-parents": "^6.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.18.0",
"@types/dedent": "^0.7.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"dedent": "^1.5.3",
"eslint": "^9.18.0",
"eslint-plugin-jest": "^28.11.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prettier-2": "npm:prettier@^2",
"remark": "^15.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"directories": {
"test": "tests"
},
"keywords": [
"accessibility",
"remark",
"remark-plugin",
"remark-lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/double-great/remark-lint-alt-text.git"
},
"bugs": {
"url": "https://github.com/double-great/remark-lint-alt-text/issues"
},
"homepage": "https://github.com/double-great/remark-lint-alt-text#readme"
}