-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.18 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "test-real-styles",
"version": "0.0.0-development",
"description": "utilities to test real styling of dom elements",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/src/index.d.ts"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc --emitDeclarationOnly && node ./build.js",
"test": "BROWSERS=chromium,webkit,firefox vitest",
"tdd": "BROWSERS=chromium vitest --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Xiphe/test-real-styles.git"
},
"keywords": [
"css",
"testing",
"ui-test",
"browser",
"playwright",
"test",
"jest",
"styles"
],
"author": "Hannes Diercks <node@xiphe.net> (https://xiphe.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xiphe/test-real-styles/issues"
},
"homepage": "https://github.com/Xiphe/test-real-styles#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"moduleNameMapper": {
"\\.(scss|css)$": "identity-obj-proxy"
},
"testTimeout": 15000
},
"devDependencies": {
"@testing-library/react": "15.0.2",
"@types/color-namer": "1.3.3",
"@types/jest": "29.5.12",
"@types/lodash.kebabcase": "4.1.9",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@types/styled-components": "5.1.34",
"@vitest/coverage-v8": "1.5.0",
"esbuild": "0.20.2",
"esbuild-node-externals": "1.13.0",
"happy-dom": "14.7.1",
"identity-obj-proxy": "3.0.0",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "1.75.0",
"styled-components": "6.1.8",
"typescript": "5.4.5",
"vitest": "1.5.0"
},
"dependencies": {
"@types/rgb-hex": "3.0.0",
"color-namer": "^1.4.0",
"dom-to-playwright": "^0.1.3",
"ichschwoer": "^0.3.0",
"lodash.kebabcase": "^4.1.1",
"playwright": "^1.43.1",
"rgb-hex": "^4.1.0"
}
}