-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.72 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
{
"name": "pdftest",
"version": "0.3.0",
"description": "Client-side visual testing library for PDFs",
"main": "dist/pdftest.cjs.js",
"module": "src/index.js",
"browser": "dist/pdftest.client.min.js",
"files": [
"/src",
"/dist",
"/bin/pdftest.js",
"!**/*.test.js"
],
"keywords": [
"pdf",
"testing",
"visual",
"comparison",
"diff",
"js",
"javascript",
"client-side"
],
"author": {
"name": "Erik Koopmans",
"email": "[email protected]",
"url": "https://www.erik-koopmans.com"
},
"repository": {
"type": "git",
"url": "https://github.com/eKoopmans/pdftest.git"
},
"bugs": {
"url": "https://github.com/eKoopmans/pdftest/issues"
},
"license": "MIT",
"dependencies": {
"commander": "^5.1.0",
"cors": "^2.8.5",
"cross-fetch": "^3.1.4",
"express": "^4.17.1",
"pdfjs-dist": "^2.3.200",
"pixelmatch": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@sortpark/build-tools": "^0.1.0",
"babel-loader": "^8.2.2",
"core-js": "^3.10.1",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"url": "^0.11.0",
"webpack": "^5.21.2",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11"
},
"bin": {
"pdftest": "./bin/pdftest.js"
},
"scripts": {
"build": "npm run clean && webpack --env=prod",
"build:analyze": "npm run clean && webpack --env=prod-analyzer",
"clean": "rimraf dist",
"dev": "webpack --env=dev",
"stage-release": "build-tools stage-release",
"release": "build-tools release",
"publish-gh": "build-tools publish-gh",
"serve": "node ./bin/pdftest.js serve 3000 ./test/ref/",
"test": "jest"
}
}