nodejs-ex/package.json

35 lines
817 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",
2016-07-09 15:39:32 +00:00
"morgan": "^1.7.0",
"object-assign":"4.1.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/sclorg/nodejs-ex.git"
2014-05-15 23:42:42 +00:00
},
"author": "Steve Speicher <sspeiche@gmail.com>",
2016-04-16 17:41:21 +00:00
"license": "CC-BY-1.0",
2014-05-15 23:42:42 +00:00
"bugs": {
"url": "http://github.com/sclorg/nodejs-ex/issues"
2014-05-15 23:42:42 +00:00
},
"homepage": "http://github.com/sclorg/nodejs-ex"
2014-05-15 23:42:42 +00:00
}