-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.36 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
{
"name": "capture",
"version": "3.3.0",
"description": "A simple service for capturing rendered Web pages using puppeteer.",
"main": "server",
"scripts": {
"test-deps": "docker compose --profile test up -d --wait --quiet-pull",
"test": "NODE_ENV=test mocha --exit --bail --timeout 20000 test/",
"start": "node server",
"dev-deps": "docker compose --profile dev up -d --wait --quiet-pull",
"stop-dev-deps": "docker compose --profile dev stop",
"dev": "NODE_ENV=development DEBUG=capture nodemon server",
"lint": "eslint --ext js,vue --ignore-path .gitignore .",
"lint-fix": "eslint --ext js,vue --ignore-path .gitignore --fix .",
"quality": "npm run test-deps && npm run lint && npm run test && npm audit --omit=dev --audit-level=critical",
"prepare": "if [ \"$npm_config_omit\" = \"dev\" ]; then echo \"Skip husky installation\"; else husky install; fi"
},
"engines": {
"node": "v20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/capture.git"
},
"keywords": [
"capture",
"screenshot",
"puppeteer"
],
"author": "Alban Mouton <alban.mouton@gmail.com>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/koumoul-dev/capture/issues"
},
"homepage": "https://github.com/koumoul-dev/capture#readme",
"dependencies": {
"@data-fair/sd-express": "^1.4.3",
"config": "^3.3.9",
"cookie-parser": "^1.4.6",
"debug": "^4.1.0",
"event-to-promise": "^0.8.0",
"express": "^4.16.4",
"generic-pool": "^3.9.0",
"get-pixels": "^3.3.3",
"gif-encoder": "^0.7.2",
"http-errors": "^2.0.0",
"http-terminator": "^3.2.0",
"imagemin-gifsicle": "^7.0.0",
"jimp": "^0.22.10",
"nodemon": "^3.0.1",
"prom-client": "^15.0.0",
"puppeteer": "^21.7.0",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"axios": "^1.5.1",
"cors": "^2.8.5",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"http-proxy-middleware": "^2.0.6",
"husky": "^8.0.3",
"mocha": "^8.0.1",
"pdf-parse": "^1.1.1"
}
}