-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "visual-html",
"description": "Visual regression testing without the flakiness.",
"version": "2.1.8",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"bugs": "https://github.com/eBay/visual-html/issues",
"dependencies": {
"specificity": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.7",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"snapshot-diff": "^0.9.0",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.8",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"files": [
"dist"
],
"homepage": "https://github.com/eBay/visual-html",
"keywords": [
"computed",
"regression",
"styles",
"visual"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/eBay/visual-html"
},
"scripts": {
"build": "tsc",
"ci:report": "cat coverage/lcov.info | coveralls",
"ci:test": "jest --ci --coverage",
"format": "prettier \"**/*.{json,md,js,ts}\" --write",
"lint": "tsc --noEmit && tslint -t codeFrame -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "npm run build",
"release": "standard-version",
"test": "jest -o",
"test:watch": "jest -o --watch"
},
"types": "dist/index.d.ts"
}