This repository was archived by the owner on Nov 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.64 KB
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
{
"name": "jsdom-to-image",
"version": "1.1.4",
"description": "Generale image from JSDOM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"install:pre-commit-hooks": "pre-commit install --install-hooks --allow-missing-config -t pre-commit -t prepare-commit-msg -t commit-msg -f",
"build": "tsc --project tsconfig.build.json",
"lint": "eslint . --ext .ts --max-warnings=0",
"prepare": "npm run build",
"test": "jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emahnovets/jsdom-to-image.git"
},
"keywords": [
"image",
"jsdom",
"screenshot",
"visual-regression"
],
"author": "Evgeny Mahnovets <mail@emahnovets.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emahnovets/jsdom-to-image/issues"
},
"homepage": "https://github.com/emahnovets/jsdom-to-image#readme",
"dependencies": {
"puppeteer": "^21.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@emahnovets/eslint-config-typescript": "^1.1.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@types/jest": "^28.1.3",
"@types/jest-image-snapshot": "^6.2.2",
"@types/jsdom": "^20.0.0",
"@types/puppeteer": "^5.4.6",
"eslint": "^8.24.0",
"jest": "^28.1.3",
"jest-image-snapshot": "^6.2.0",
"jsdom": "^22.1.0",
"prettier": "^2.7.1",
"semantic-release": "^22.0.5",
"ts-jest": "^28.0.8",
"typescript": "^4.8.4"
},
"engines": {
"node": ">= 16.0.0"
}
}