-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "query-bin",
"version": "0.6.0",
"description": "A list with queries like in the 'testing-library'",
"types": "index.d.s",
"type": "module",
"module": "index.js",
"main": "dist/QueryBin.cjs",
"repository": {
"type": "github",
"url": "https://github.com/nknapp/query-bin"
},
"funding": [
{
"type": "individual",
"url": "https://www.paypal.com/donate/?hosted_button_id=GB656ZSAEQEXN"
},
{
"type": "liberapay",
"url": "https://de.liberapay.com/nils.knappmeier/"
}
],
"scripts": {
"dev": "vitest --ui",
"test": "vitest run && tsc",
"format": "prettier -w .",
"build": "./scripts/build-cjs.sh",
"version": "node ./scripts/on-version-bump.js",
"prepare": "./scripts/on-postinstall.sh",
"postversion": "git push origin main --tags && npm publish"
},
"keywords": [
"testing-library"
],
"author": "Nils Knappmeier",
"license": "MIT",
"devDependencies": {
"@types/node": "20.12.7",
"prettier": "3.2.5",
"rollup": "4.16.1",
"typescript": "5.4.5",
"vitest": "1.5.0"
}
}