-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
84 lines (84 loc) · 2.19 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": "@solidjs/testing-library",
"version": "0.8.9",
"description": "Simple and complete Solid testing utilities that encourage good testing practices.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"license": "MIT",
"author": "Ryan Carniato",
"maintainers": [
"Alex Lohr"
],
"homepage": "https://github.com/solidjs/solid-testing-library#readme",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-testing-library"
},
"bugs": {
"url": "https://github.com/solidjs/solid-testing-library/issues"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"testing",
"solid-js",
"ui",
"dom",
"jsdom",
"unit",
"integration",
"functional",
"end-to-end",
"e2e"
],
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup src/index.ts --format esm,cjs --dts --clean; node -e 'require(`node:fs/promises`).copyFile(`dist/index.d.ts`, `dist/index.d.cts`)'",
"typecheck": "tsc --noEmit; tsc --noEmit --project src/__tests__/tsconfig.json",
"test": "vitest",
"test:watch": "npm test --watch",
"test:coverage": "npm test -- --coverage",
"setup": "npm install && npm run validate",
"prettier": "prettier -w src/**/* ./*.json ./vitest.config.js",
"validate": "npm run typecheck && npm run test:coverage && npm run build"
},
"dependencies": {
"@testing-library/dom": "^10.3.2"
},
"devDependencies": {
"@solidjs/router": "^0.14.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/user-event": "^14.5.2",
"@vitest/coverage-v8": "^2.0.4",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"pretty-format": "^29.7.0",
"solid-js": "^1.8.18",
"tsup": "8.2.2",
"typescript": "^5.5.3",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.0.4"
},
"peerDependencies": {
"@solidjs/router": ">=0.9.0",
"solid-js": ">=1.0.0"
},
"peerDependenciesMeta": {
"@solidjs/router": {
"optional": true
}
}
}