-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
72 lines (72 loc) · 1.71 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
{
"name": "nci",
"version": "1.0.27",
"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 prune && npm install",
"lint": "jshint ./"
},
"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": "oleg.korobenko@gmail.com"
},
{
"name": "Vladimir Polyakov",
"email": "nrd11k@gmail.com"
}
],
"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.4",
"through": "2.3.6",
"tree-kill": "1.2.2",
"twostep": "0.4.2",
"underscore": "1.12.1"
},
"devDependencies": {
"coveralls": "3.1.0",
"expect.js": "0.3.1",
"jshint": "2.12.0",
"memdown": "1.1.0",
"mocha": "8.3.2",
"nci-projects-reloader": "2.0.0",
"nci-rest-api-server": "2.0.1",
"nci-static-server": "2.0.1",
"nci-yaml-reader": "1.2.3",
"nodemon": "2.0.7",
"nrun": "0.1.4",
"nyc": "15.1.0",
"proxyquire": "1.7.4",
"sinon": "1.14.1"
}
}