-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "ts-jira-client",
"version": "1.0.6",
"description": "Wrapper for the JIRA API, based off jira-client",
"authors": [
"Bart Riepe <[email protected]>",
"Steven Surowiec <[email protected]>"
],
"contributors": [
"Chris Moultrie <[email protected]>",
"Lucas Vogelsang <[email protected]>",
"Matt Smith <[email protected]>",
"Anson Wayman <[email protected]>"
],
"homepage": "https://github.com/aeolun/ts-jira-client",
"repository": {
"type": "git",
"url": "[email protected]:Aeolun/ts-jira-client.git"
},
"lint-staged": {
"*.ts": [
"biome lint"
]
},
"engine": {
"node": ">=18.0.0"
},
"main": "./lib/jira.js",
"typings": "./lib/jira.d.ts",
"files": [
"lib",
"docs",
"LICENSE.md",
"README.md"
],
"license": "MIT",
"dependencies": {
"axios": "^1.6.7"
},
"scripts": {
"build": "rm -rf lib && tsc",
"watch": "rm -rf lib && tsc -w",
"docs-build": "rm -rf docs && typedoc src/jira.ts --out docs",
"update-types": "tsx scripts/update-ts-definitions.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --apply-unsafe .",
"format": "biome format .",
"format:fix": "biome format --write .",
"test": "vitest",
"prepublishOnly": "npm run build && npm run docs-build",
"release": "semantic-release",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.11.16",
"api-spec-converter": "^2.12.0",
"axios-mock-adapter": "^1.22.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"openapi-typescript": "^6.7.4",
"semantic-release": "^23.0.0",
"tsx": "^4.7.0",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}