forked from TheBusyBiscuit/builds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "maven-builds-server",
"version": "2.1.2",
"description": "A simple Builds Server for all my Maven Projects",
"main": "src/remote.js",
"scripts": {
"remote": "node ./src/remote.js",
"iteration": "node ./src/single-run.js",
"test": "nyc --reporter=lcov --reporter=text-lcov mocha test/*.js --reporter mocha-multi-reporters --reporter-options configFile=resources/mocha.json",
"sonar": "node ./src/sonar.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBusyBiscuit/builds.git"
},
"author": "TheBusyBiscuit",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheBusyBiscuit/builds/issues"
},
"homepage": "https://github.com/TheBusyBiscuit/builds#readme",
"dependencies": {
"child-process-promise": "^2.2.1",
"discord.js": "^12.0.0",
"lodash": "^4.17.14",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"xml-library": "0.2.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "8.2.1",
"mocha-multi-reporters": "1.5.1",
"mocha-sonarqube-reporter": "1.0.2",
"nyc": "15.1.0"
}
}