-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.87 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
67
68
69
70
71
72
73
74
75
76
{
"name": "pdf-text-reader",
"version": "5.1.0",
"description": "Dead simple pdf text reader",
"keywords": [
"pdf",
"text",
"converter",
"pdf-text-reader",
"reader"
],
"homepage": "https://github.com/electrovir/pdf-text-reader",
"bugs": {
"url": "https://github.com/electrovir/pdf-text-reader/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/electrovir/pdf-text-reader"
},
"license": "(MIT or CC0 1.0)",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "rm -rf dist && tsc --pretty",
"docs": "virmator docs",
"format": "prettier --color --cache --cache-strategy content \"./**/*.+(cjs|css|graphql|html|js|json|jsx|less|md|mjs|scss|toml|ts|tsx|yaml|yml)\"",
"publish": "virmator publish \"npm run compile && npm run test:all\"",
"test": "npm run compile && test-as-package mocha --colors --config 'configs/mocha.config.cjs'",
"test:all": "concurrently --colors --kill-others-on-fail -c auto --names types,tests,spelling,format,docs,deps \"npm run test:types\" \"npm run test\" \"npm run test:spelling\" \"npm run test:format\" \"npm run test:docs\" \"npm run test:deps\"",
"test:deps": "virmator deps check",
"test:docs": "virmator docs check",
"test:format": "npm run format -- --check",
"test:spelling": "virmator spellcheck",
"test:types": "tsc --noEmit"
},
"dependencies": {
"pdfjs-dist": "4.2.67"
},
"devDependencies": {
"@augment-vir/node-js": "^28.0.0",
"@electrovir/nyc": "^15.1.0-fix0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "20.12.10",
"chai": "^5.1.0",
"cspell": "^8.8.0",
"dependency-cruiser": "^16.3.1",
"esbuild": "^0.21.0",
"istanbul-smart-text-reporter": "^1.1.4",
"markdown-code-example-inserter": "^1.0.0",
"mocha": "^10.4.0",
"mocha-spec-reporter-with-file-names": "^0.0.3",
"npm-check-updates": "~16.12.3",
"prettier": "^3.2.5",
"prettier-plugin-interpolated-html-tags": "^1.0.5",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-multiline-arrays": "^3.0.4",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1",
"run-time-assertions": "^1.2.0",
"test-as-package": "^1.0.0",
"tsx": "^4.9.3",
"type-fest": "^4.18.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"virmator": "^11.5.2"
}
}