forked from node-ci/nci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.1 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
67
68
69
70
71
72
73
74
75
76
{
"name": "nci",
"version": "1.0.14",
"description": "Flexible, open source continuous integration server written in node.js",
"bin": {
"nci": "bin/nci"
},
"scripts": {
"makeTestRepos": "find test/repos/* | grep -v '.tar.gz' | xargs rm -rf && cd test/repos/ && tar -xf mercurial.tar.gz && tar -xf git.tar.gz",
"test": "npm run makeTestRepos && mocha --bail --reporter=spec --timeout 10000 --colors",
"coverage": "nyc nrun test",
"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",
"mercurial",
"git",
"docker",
"leveldb"
],
"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",
"junk": "1.0.3",
"nlevel": "1.0.3",
"through": "2.3.6",
"tree-kill": "1.1.0",
"twostep": "0.4.2",
"underscore": "1.8.3"
},
"devDependencies": {
"coveralls": "2.11.14",
"dox": "0.8.0",
"expect.js": "0.3.1",
"jshint": "2.4.4",
"memdown": "1.1.0",
"mocha": "3.1.1",
"nci-projects-reloader": "1.1.3",
"nci-rest-api-server": "1.0.4",
"nci-static-server": "1.2.0",
"nci-yaml-reader": "1.2.1",
"nodemon": "1.9.1",
"nrun": "0.1.4",
"nyc": "8.3.1",
"proxyquire": "1.7.4",
"sinon": "1.14.1"
}
}