-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "pdf-metadata",
"version": "2.0.1",
"description": "Extract read time, pages and metadata of pdf files in litterarum server.",
"author": "mandragora-hub <[email protected]>",
"main": "dist/src/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"prepare": "husky install"
},
"license": "ISC",
"dependencies": {
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^3.8.162",
"reading-time": "^1.5.0"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}