nci/package.json

65 lines
1.8 KiB
JSON
Raw Permalink Normal View History

{
"name": "nci",
2016-03-16 20:11:36 +00:00
"version": "0.10.0",
2016-02-01 18:14:36 +00:00
"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",
2016-01-30 13:57:08 +00:00
"dev": "nodemon app.js",
2016-01-09 23:46:13 +00:00
"sync": "npm install && npm prune",
"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",
2016-01-09 23:46:13 +00:00
"doc": "nrun docProjectsCollection && nrun docBuildsCollection"
},
"repository": {
"type": "git",
2015-07-15 04:20:38 +00:00
"url": "git://github.com/node-ci/nci.git"
},
"keywords": [
"continuous",
"integration",
"server",
"ci",
"build"
],
2015-07-12 08:39:22 +00:00
"contributors": [
{
"name": "Oleg Korobenko",
"email": "oleg.korobenko@gmail.com"
},
{
"name": "Vladimir Polyakov",
"email": "nrd11k@gmail.com"
}
],
"license": "MIT",
"bugs": {
2015-07-15 04:20:38 +00:00
"url": "https://github.com/node-ci/nci/issues"
},
2015-07-15 04:20:38 +00:00
"homepage": "https://github.com/node-ci/nci",
"dependencies": {
2015-07-05 18:03:58 +00:00
"colors": "1.1.2",
2016-01-09 13:35:33 +00:00
"conform": "0.2.12",
2015-10-12 17:40:41 +00:00
"nlevel": "1.0.3",
2015-12-28 20:34:08 +00:00
"through": "2.3.6",
2016-01-09 13:35:33 +00:00
"twostep": "0.4.1",
"underscore": "1.8.3"
},
"devDependencies": {
"dox": "0.8.0",
"expect.js": "0.3.1",
"memdown": "1.1.0",
2015-05-07 20:53:46 +00:00
"mocha": "1.18.2",
2016-03-16 21:12:28 +00:00
"nci-projects-reloader": "1.1.0",
"nci-rest-api-server": "0.6.0",
"nci-static-server": "1.1.0",
"nci-yaml-reader": "1.2.0",
2016-03-13 20:32:56 +00:00
"nodemon": "1.9.1",
"nrun": "0.1.4",
2016-01-30 13:36:03 +00:00
"sinon": "1.14.1"
}
}