forked from TheBusyBiscuit/builds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "maven-builds-server",
"version": "2.2.0",
"description": "A simple Builds Server for all my Maven Projects",
"main": "src/single-run.js",
"scripts": {
"iteration": "node ./src/single-run.js",
"regen": "node ./src/force-update.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",
"formatter": "standard --fix || true"
},
"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": "^13.0.0",
"lodash": "^4.17.19",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"xml-library": "0.2.0"
},
"devDependencies": {
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"mocha": "10.2.0",
"mocha-multi-reporters": "1.5.1",
"mocha-sonarqube-reporter": "1.0.2",
"nyc": "15.1.0",
"standard": "17.1.0"
},
"standard": {
"ignore": [
"test/*.js",
"src/index.js",
"src/frontend.js"
]
}
}