2014-05-09 23:27:35 +00:00
|
|
|
{
|
|
|
|
"name": "nci",
|
2015-09-28 19:49:52 +00:00
|
|
|
"version": "0.1.4",
|
2014-05-09 23:27:35 +00:00
|
|
|
"description": "Continuous integration server written in node.js",
|
|
|
|
"bin": {
|
|
|
|
"nci": "bin/nci"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2015-07-15 04:29:43 +00:00
|
|
|
"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 test/index --timeout 4000",
|
2015-06-14 19:58:33 +00:00
|
|
|
"dev": "gulp",
|
2015-07-26 16:59:57 +00:00
|
|
|
"sync": "npm install && npm prune && bower install && bower prune",
|
|
|
|
"buildJs": "r.js -o static/js/requirejs/buid.js",
|
2015-07-28 16:57:02 +00:00
|
|
|
"buildClean": "rm static/index.html",
|
2015-07-26 16:59:57 +00:00
|
|
|
"buildHtml": "jade views/index.jade --obj '{\"env\": \"production\"}' -o static/",
|
2015-07-28 17:57:38 +00:00
|
|
|
"build": "gulp less && gulp fonts && gulp react-jade && npm run buildJs && npm run buildHtml && git checkout static/js/app.build.js"
|
2014-05-09 23:27:35 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2015-07-15 04:20:38 +00:00
|
|
|
"url": "git://github.com/node-ci/nci.git"
|
2014-05-09 23:27:35 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
],
|
2014-05-09 23:27:35 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2015-07-15 04:20:38 +00:00
|
|
|
"url": "https://github.com/node-ci/nci/issues"
|
2014-05-09 23:27:35 +00:00
|
|
|
},
|
2015-07-15 04:20:38 +00:00
|
|
|
"homepage": "https://github.com/node-ci/nci",
|
2014-05-09 23:27:35 +00:00
|
|
|
"dependencies": {
|
2015-06-14 13:40:20 +00:00
|
|
|
"chokidar": "1.0.3",
|
2015-07-05 18:03:58 +00:00
|
|
|
"colors": "1.1.2",
|
2015-07-12 08:39:22 +00:00
|
|
|
"cron": "1.0.9",
|
2015-04-12 21:41:13 +00:00
|
|
|
"data.io": "0.3.0",
|
2015-05-17 10:26:28 +00:00
|
|
|
"nlevel": "1.0.2",
|
2015-04-12 21:41:13 +00:00
|
|
|
"node-static": "0.7.6",
|
|
|
|
"socket.io": "1.3.5",
|
2015-03-23 21:16:00 +00:00
|
|
|
"twostep": "0.4.1",
|
2015-07-06 16:37:36 +00:00
|
|
|
"underscore": "1.8.3"
|
2014-05-09 23:27:35 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-04-12 21:41:13 +00:00
|
|
|
"bower": "1.4.1",
|
2014-05-09 23:27:35 +00:00
|
|
|
"expect.js": "0.3.1",
|
2015-04-12 21:41:13 +00:00
|
|
|
"gulp": "3.8.11",
|
2015-05-07 20:53:46 +00:00
|
|
|
"gulp-less": "3.0.3",
|
|
|
|
"gulp-nodemon": "2.0.3",
|
2015-05-04 20:32:47 +00:00
|
|
|
"gulp-react-jade-amd": "git://github.com/vladimir-polyakov/gulp-react-jade-amd",
|
2015-07-26 16:59:57 +00:00
|
|
|
"jade": "1.11.0",
|
2015-05-09 20:19:25 +00:00
|
|
|
"main-bower-files": "2.7.0",
|
2015-07-12 20:24:09 +00:00
|
|
|
"medeadown": "1.1.7",
|
2015-05-23 23:22:09 +00:00
|
|
|
"memdown": "1.0.0",
|
2015-05-07 20:53:46 +00:00
|
|
|
"mocha": "1.18.2",
|
2015-07-05 22:02:37 +00:00
|
|
|
"nci-yaml-reader": "0.1.0",
|
2015-05-23 23:22:09 +00:00
|
|
|
"nodemon": "1.3.7",
|
2015-09-28 19:48:39 +00:00
|
|
|
"nrun": "0.1.3",
|
2015-07-26 16:59:57 +00:00
|
|
|
"requirejs": "2.1.19",
|
2015-05-23 23:22:09 +00:00
|
|
|
"sinon": "1.14.1"
|
2014-05-09 23:27:35 +00:00
|
|
|
}
|
|
|
|
}
|