forked from node-ci/nci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nci",
"version": "1.0.0",
"description": "Flexible, open source continuous integration server written in node.js",
"bin": {
"nci": "bin/nci"
},
"scripts": {
"makeTestRepos": "rm -rf test/repos/{mercurial,git}; cd test/repos/ && tar -xf mercurial.tar.gz && tar -xf git.tar.gz",
"test": "npm run makeTestRepos && mocha --bail --reporter=spec --timeout 10000",
"dev": "nodemon app.js",
"sync": "npm install && npm prune",
"lint": "jshint ./",
"docProjectsCollection": "dox --api --skipSingleStar < lib/project.js | sed '/^ - \\[ProjectsCollection/ d' > docs/developing-plugins/projects-collection.md",
"docBuildsCollection": "dox --api --skipSingleStar < lib/build.js | sed '/^ - \\[BuildsCollection/ d' > docs/developing-plugins/builds-collection.md",
"doc": "nrun docProjectsCollection && nrun docBuildsCollection"
},
"repository": {
"type": "git",
"url": "git://github.com/node-ci/nci.git"
},
"keywords": [
"continuous",
"integration",
"server",
"ci",
"build"
],
"contributors": [
{
"name": "Oleg Korobenko",
"email": "[email protected]"
},
{
"name": "Vladimir Polyakov",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/node-ci/nci/issues"
},
"homepage": "https://github.com/node-ci/nci",
"dependencies": {
"colors": "1.1.2",
"conform": "0.2.12",
"nlevel": "1.0.3",
"through": "2.3.6",
"twostep": "0.4.1",
"underscore": "1.8.3"
},
"devDependencies": {
"dox": "0.8.0",
"expect.js": "0.3.1",
"jshint": "2.4.4",
"memdown": "1.1.0",
"mocha": "1.18.2",
"nci-projects-reloader": "1.1.1",
"nci-rest-api-server": "1.0.0",
"nci-static-server": "1.1.1",
"nci-yaml-reader": "1.2.1",
"nodemon": "1.9.1",
"nrun": "0.1.4",
"sinon": "1.14.1"
}
}