-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "screenshot-test-server",
"version": "0.0.7",
"description": "A node server for screenshot testing that takes base64 string for captured screenshot and compares it with exisiting screenshot and generates diff image and a test report as an html file.",
"main": "./dist/server.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p . && ./build.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"canvas": "^2.11.2"
},
"devDependencies": {
"@types/node": "^22.7.0",
"typescript": "^5.6.2"
},
"repository": "https://github.com/Abhinandan-Kushwaha/screenshot-test-server",
"author": "Abhinandan Kushwaha <kushabhi5@gmail.com> (https://github.com/Abhinandan-Kushwaha)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Abhinandan-Kushwaha/screenshot-test-server/issues"
},
"homepage": "https://github.com/Abhinandan-Kushwaha/screenshot-test-server#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"screenshot-test",
"screenshot",
"test",
"snapshot-test",
"snapshot"
]
}