-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 979 Bytes
/
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
{
"name": "cimpler",
"version": "0.0.1",
"author": "Daniel Beardsley <[email protected]>",
"description": "A simple continuous integration server with github support and a fully pluggable architecture",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/danielbeardsley/cimpler/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/danielbeardsley/cimpler.git"
},
"dependencies": {
"@octokit/rest": "^15.18.3",
"body-parser": "^1.19.0",
"connect": "~3.7.0",
"log4js": "~0.5.4",
"notify-queue": "~0.0.5",
"optimist": "~0.3.4",
"qs": "^6.7.0",
"response-time": "^2.3.2",
"shell-quote": "^1.6.1",
"underscore": "~1.4.3"
},
"devDependencies": {
"mocha": "^6.2.3"
},
"main": "./cimpler.js",
"scripts": {
"test": "mocha --reporter spec --exit --timeout 30000 --slow 500 test/*"
}
}