-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "bugzilla",
"version": "3.1.4",
"description": "A NodeJS module to access Bugzilla instances through the REST API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format-check": "prettier --check .",
"test": "vitest run --coverage",
"all": "yarn run build && yarn run format-check && yarn run test",
"update-snapshots": "vitest run --update",
"prepack": "yarn run build",
"version": "node scripts/version.js && git add CHANGELOG.md",
"postversion": "node scripts/post-version.js && git add CHANGELOG.md && git commit -m 'Update CHANGELOG.md'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/bugzilla.git"
},
"keywords": [
"bugzilla",
"node",
"nodejs",
"typescript",
"javascript"
],
"author": "Dave Townsend <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/redhat-plumbers-in-action/bugzilla/issues"
},
"homepage": "https://github.com/redhat-plumbers-in-action/bugzilla#readme",
"devDependencies": {
"@types/luxon": "3.4.2",
"@types/node": "22.9.1",
"@vitest/coverage-v8": "^2.1.5",
"msw": "2.6.6",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vitest": "^2.1.5"
},
"dependencies": {
"axios": "1.7.7",
"luxon": "3.5.0"
},
"packageManager": "[email protected]"
}