-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.71 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
64
65
66
{
"name": "@double-great/alt-text",
"version": "3.1.0",
"description": "Check for unhelpful alt text.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest",
"write-docs": "tsc && node dist/docs.js",
"build": "tsc",
"prepublishOnly": "pinst --disable && tsc",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/double-great/alt-text.git"
},
"author": "@double-great",
"license": "MIT",
"bugs": {
"url": "https://github.com/double-great/alt-text/issues"
},
"homepage": "https://github.com/double-great/alt-text#readme",
"dependencies": {
"emoji-regex": "^10.3.0",
"github-slugger": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@eslint/js": "^9.3.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
},
"directories": {
"test": "tests"
},
"keywords": [
"accessibility",
"alt text"
],
"jest": {
"moduleNameMapper": {
"./clues.js$": "<rootDir>/src/clues.ts",
"./utils.js$": "<rootDir>/src/clues/utils.ts",
"./docs.js$": "<rootDir>/src/docs.ts",
"^./clues/(.*).js$": "<rootDir>/src/clues/$1.ts",
"..?/index.js$": "<rootDir>/src/index.ts"
},
"clearMocks": true,
"transformIgnorePatterns": [
"node_modules/(?!(github-slugger)/)"
]
}
}