-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
39 lines (39 loc) · 944 Bytes
/
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
{
"name": "pdf-worker",
"version": "1.0.0",
"description": "A PDF toolkit that runs on Node.js and Web Worker",
"main": "",
"scripts": {
"build": "npm run build:pdf.js && npm run build:worker",
"build:pdf.js": "sh scripts/build-pdfjs",
"build:worker": "webpack --mode production",
"devel:worker": "webpack --mode development",
"test": "npx mocha"
},
"browserslist": [
"last 2 versions",
"not dead",
"> 0.2%"
],
"type": "module",
"author": "Martynas Bagdonas",
"license": "AGPL-3.0",
"dependencies": {
"core-js": "^3.37.1",
"fastest-levenshtein": "^1.0.16",
"pako": "2.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.24.6",
"@zotero/eslint-config": "^1.0.7",
"babel-loader": "^9.1.3",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}