forked from solidjs/solid-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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
{
"name": "solid-testing-library",
"version": "0.3.0",
"description": "Simple and complete Solid testing utilities that encourage good testing practices.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"license": "MIT",
"author": "Ryan Carniato",
"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"
},
"keywords": [
"testing",
"solid-js",
"ui",
"dom",
"jsdom",
"unit",
"integration",
"functional",
"end-to-end",
"e2e"
],
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"build": "tsc --project tsconfig.build.json; tsc --project tsconfig.build.esm.json; node ./manage-dist.js",
"test": "jest tests",
"test:watch": "npm test --watch",
"test:coverage": "npm test -- --coverage",
"setup": "npm install && npm run validate",
"validate": "npm run test:coverage && npm run clean && npm run build",
"report:coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"@testing-library/dom": "^7.29.4"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "7.16.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"babel-jest": "^27.5.1",
"babel-preset-solid": "^1.3.6",
"coveralls": "^3.1.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"pretty-format": "^27.5.1",
"rimraf": "^3.0.2",
"solid-jest": "^0.2.0",
"solid-js": "^1.3.8",
"typescript": "^4.5.5"
},
"peerDependencies": {
"solid-js": ">=1.0.0"
}
}