-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
75 lines (75 loc) · 1.69 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
{
"name": "@bryntum/pdf-export-server",
"version": "1.0.0",
"description": "Standalone PDF export server",
"keywords": [
"bryntum",
"pdf",
"png",
"export",
"server"
],
"homepage": "https://github.com/bryntum/pdf-export-server",
"bugs": {
"url": "https://github.com/bryntum/pdf-export-server/issues"
},
"license": "MIT",
"author": {
"name": "Bryntum",
"url": "https://bryntum.com",
"email": "[email protected]"
},
"bin": {
"pdf-export-server": "./bin/pdf-export-server"
},
"repository": {
"type": "git",
"url": "github:bryntum/pdf-export-server"
},
"scripts": {
"start": "node ./src/server.js",
"test": "jest",
"measure": "node ./src/utils/measure-export-time.js"
},
"dependencies": {
"body-parser": "~1.18.3",
"express": "~4.16.3",
"express-request-id": "~1.4.1",
"extract-zip": "~1.6.6",
"jest": "^28.1.0",
"fs": "0.0.1-security",
"http": "0.0.0",
"https": "~1.0.0",
"https-proxy-agent": "~2.2.1",
"hummus": "~1.0.87",
"memory-streams": "~0.1.3",
"merge-img": "~2.1.2",
"mkdirp": "~0.5.1",
"move-file": "~1.0.0",
"nanoid": "~2.1.9",
"node-getopt": "~0.3.2",
"os": "~0.1.1",
"path": "~0.12.7",
"pkg": "~5.5.1",
"proxy-from-env": "~1.0.0",
"puppeteer": "15.3.2",
"recursive-copy": "~2.0.9",
"rimraf": "~2.6.2",
"serve-static": "~1.13.2",
"url": "~0.11.0",
"winston": "~3.2.1",
"winston-daily-rotate-file": "~4.4.1",
"ws": "~5.2.0"
},
"engines": {
"node": ">=14"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
],
"setupFiles": [
"<rootDir>/__tests__/jest.setup.js"
]
}
}