forked from danielbeardsley/cimpler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (29 loc) · 832 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": "https://github.com/danielbeardsley/cimpler/raw/master/LICENSE"
}],
"repository": {
"type": "git",
"url": "https://github.com/danielbeardsley/cimpler.git"
},
"dependencies": {
"github": "~3.1.1",
"optimist": "~0.3.4",
"notify-queue": "~0.0.5",
"connect": "~2.6.0",
"log4js": "~0.5.4",
"underscore": "~1.4.3"
},
"devDependencies" : {
"mocha" : "~1.6.0"
},
"main": "./cimpler.js",
"scripts": {
"test": "mocha --reporter spec --timeout 4000 --slow 500 test/*"
}
}