-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "testing-library-extra",
"version": "1.1.0",
"description": "Add bySelector and byAttribute to @testing-library/dom",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsup src/index.ts --dts --format esm --sourcemap --watch",
"build": "tsup src/index.ts --dts --format esm --sourcemap --clean",
"tsc": "tsc --noEmit",
"lint": "eslint src __tests__ --ext .js,.ts --fix",
"clean": "rm -rf dist",
"test": "vitest",
"prepare": "husky"
},
"author": "molvqingtai",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/molvqingtai/testing-library-extra.git"
},
"bugs": {
"url": "https://github.com/molvqingtai/testing-library-extra/issues"
},
"homepage": "https://github.com/molvqingtai/testing-library-extra#readme",
"keywords": [
"testing-library",
"puppeteer",
"playwright",
"jest",
"vitest",
"cypress",
"webdriver",
"selenium",
"jsdom",
"happy-dom"
],
"dependencies": {
"@testing-library/dom": "^9.3.4"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"happy-dom": "^13.7.3",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"publishConfig": {
"access": "public"
}
}