-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "@noma.to/qwik-testing-library-root",
"version": "0.0.0-semantically-released",
"description": "",
"main": "index.js",
"scripts": {
"toc": "doctoc README.md",
"test": "pnpm -r build && pnpm -r test",
"fmt": "pnpm -r fmt",
"lint": "pnpm -r lint",
"validate": "pnpm -r lint && pnpm -r validate",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "pnpm --filter '{packages/qwik-testing-library}' run build",
"release:prepare": "pnpm --filter '{packages/qwik-testing-library}' run build && cp README.md packages/qwik-testing-library/README.md && cp LICENSE packages/qwik-testing-library/LICENSE",
"release": "pnpm --filter '{packages/qwik-testing-library}' --workspace-concurrency=1 exec -- npx --no-install semantic-release -e semantic-release-monorepo",
"prepare": "husky"
},
"keywords": [
"testing",
"testing-library",
"qwik",
"ui",
"dom",
"jsdom",
"unit",
"integration",
"functional",
"end-to-end",
"e2e",
"vitest"
],
"license": "MIT",
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"doctoc": "^2.2.1",
"husky": "^9.1.7",
"semantic-release": "^24.2.0",
"semantic-release-monorepo": "^8.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}