nodejs-ex/package.json

34 lines
788 B
JSON
Raw Normal View History

2014-05-15 23:42:42 +00:00
{
"name": "nodejs-ex",
2014-05-15 23:42:42 +00:00
"version": "0.0.1",
"description": "Node.js sample app for OpenShift 3",
2014-05-15 23:42:42 +00:00
"main": "server.js",
2014-05-19 22:47:43 +00:00
"dependencies": {
2016-04-11 18:52:20 +00:00
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"ejs": "^2.4.1",
"express": "^4.13.4",
"mocha": "^2.4.5",
"mongodb": "^2.1.16",
"morgan": "^1.7.0"
2014-05-15 23:42:42 +00:00
},
"engine": {
"node": "*",
"npm": "*"
},
"scripts": {
2016-04-11 18:52:20 +00:00
"start": "node server.js",
"test": "IP=0.0.0.0 PORT=3030 mocha --timeout 5000 tests/*_test.js"
2014-05-15 23:42:42 +00:00
},
"repository": {
"type": "git",
"url": "http://github.com/openshift/nodejs-ex.git"
2014-05-15 23:42:42 +00:00
},
"author": "Steve Speicher <sspeiche@gmail.com>",
2014-05-15 23:42:42 +00:00
"license": "",
"bugs": {
"url": "http://github.com/openshift/nodejs-ex/issues"
2014-05-15 23:42:42 +00:00
},
"homepage": "http://github.com/openshift/nodejs-ex"
2014-05-15 23:42:42 +00:00
}