forked from andreyunugro/sonarqube-webapis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 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
68
69
70
71
{
"name": "sonarqube-webapis",
"description": "SonarQube / SonarCloud Web APIs Client Library for Node.js",
"version": "1.0.2",
"main": "dist/src/sonar.js",
"types": "dist/src/sonar.d.ts",
"dependencies": {
"axios": "^1.1.3"
},
"scripts": {
"clean": "shx rm -rf dist/ && shx rm -rf coverage/",
"ci": "ts-mocha --watch --watch-files \"src/**/*.ts,test/**/*.ts\" \"test/**/*.spec.ts\"",
"commit": "cz -S",
"compile": "npm run clean && tsc --project tsconfig.build.json",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint --ext .ts ./src ./test",
"mocha": "ts-mocha \"test/**/*.spec.ts\" --recursive --retries 2",
"release": "standard-version",
"test": "npm run compile && nyc npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreyunugro/sonarqube-webapis.git"
},
"keywords": [
"sonarqube",
"sonarcloud",
"webapis"
],
"author": "andreyunugro",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreyunugro/sonarqube-webapis/issues"
},
"homepage": "https://github.com/andreyunugro/sonarqube-webapis#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.7",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"sinon": "^14.0.1",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist/src/*"
]
}