-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.74 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
64
65
66
67
68
69
70
71
{
"name": "pdf-accessibility",
"version": "0.0.1",
"description": "Web application for PDF accessibility evaluation and automatic remediation.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"test": "jest --testEnvironment=node --forceExit",
"test:watch": "jest --testEnvironment=node --watch",
"test:coverage": "jest --testEnvironment=node --coverage --forceExit",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write .",
"prepare": "husky install",
"release": "standard-version",
"changelog": "standard-version --dry-run"
},
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"helmet": "^7.2.0",
"multer": "^1.4.5-lts.1",
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.1",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"commitizen": "^4.0.0",
"cz-git": "^1.0.0",
"eslint": "^8.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.0.0",
"standard-version": "^9.0.0",
"supertest": "^7.0.0"
},
"config": {
"commitizen": {
"path": "cz-git"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"pdf",
"accessibility",
"wcag",
"remediation",
"a11y"
],
"author": "Jeremy Shields",
"repository": {
"type": "git",
"url": "https://github.com/jshields-ca/pdf-accessibility.git"
},
"license": "MIT"
}