-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 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
{
"name": "regressify",
"version": "2.1.0",
"description": "Visual regression tests support",
"main": "src/index.ts",
"type": "module",
"bin": {
"regressify": "./src/index.js"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"install:browsers": "tsx src/index.ts install",
"ref": "tsx src/index.ts ref",
"approve": "tsx src/index.ts approve",
"test": "tsx src/index.ts test",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=dot",
"snapshot": "tsx src/index.ts snapshot",
"ver": "bun version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/precise-alloy/regression-test.git"
},
"homepage": "https://tuyen.blog/optimizely-cms/testing/get-started/",
"keywords": [
"cli",
"visual",
"test",
"regression"
],
"author": "tuyen-at-work",
"license": "ISC",
"dependencies": {
"backstopjs": "^6.3.25",
"chalk": "^5.4.1",
"glob": "^11.0.3",
"js-yaml": "^4.1.0",
"ncp": "^2.0.0",
"slash": "^5.1.0"
},
"devDependencies": {
"@types/backstopjs": "^6.1.3",
"@types/js-yaml": "^4.0.9",
"@types/ncp": "^2.0.8",
"@types/node": "^22.15.17",
"@vitest/coverage-v8": "^3.2.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}