-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 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
{
"name": "@impulselab/testing",
"version": "0.0.11",
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE.md"
],
"description": "E2E testing library with Puppeteer for browser automation",
"type": "module",
"main": "./dist/cli/index.js",
"types": "./dist/cli/index.d.ts",
"bin": {
"impulse-testing": "./bin/impulse-testing.js"
},
"scripts": {
"build": "tsup",
"dev": "sh -c 'cd demo && tsx --tsconfig=../tsconfig.json ../src/cli/index.ts \"$@\" && cd ..' -- ",
"start": "node dist/cli/index.js",
"format": "biome format --write src/",
"checks": "tsc --noEmit && biome check src/"
},
"keywords": [
"e2e",
"testing",
"puppeteer",
"test-automation"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.15.0",
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/node": "^24.7.2",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"tsup": "^8.3.5",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@inquirer/prompts": "^7.8.6",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"css-selector-generator": "^3.7.0",
"execa": "^9.6.0",
"pixelmatch": "^6.0.0",
"pngjs": "^7.0.0",
"puppeteer": "^24.24.0",
"yaml": "^2.8.1",
"zod": "^4.1.12"
}
}