-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.92 KB
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
{
"name": "sonarqube-api-client",
"version": "0.0.1",
"description": "Community SonarQube Web API client for JavaScript!",
"private": true,
"type": "module",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"lint": "eslint --cache --fix .",
"lint:check": "eslint --cache .",
"format": "prettier --cache --write --ignore-unknown .",
"format:check": "prettier --cache --check --ignore-unknown .",
"test": "jest --coverage",
"release": "npx semantic-release",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.39.5",
"@rollup/plugin-typescript": "^12.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/parser": "^8.65.0",
"eslint": "^9.39.5",
"globals": "^15.15.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"p-limit": "^6.2.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"rollup": "^4.62.3",
"rollup-plugin-copy": "^3.5.0",
"semantic-release": "^25.0.8",
"ts-jest": "^29.4.12",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0"
},
"keywords": [
"sonar",
"sonarqube",
"api",
"client"
],
"bugs": {
"url": "https://github.com/ciqol/sonarqube-api-client/issues"
},
"homepage": "https://github.com/ciqol/sonarqube-api-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ciqol/sonarqube-api-client.git"
}
}