drone-with-nodejs-test/package.json

27 lines
634 B
JSON
Raw Permalink Normal View History

2018-09-15 00:21:59 +02:00
{
"name": "drone-with-nodejs",
"version": "1.0.0",
"description": "An example NodeJS repo with Drone test/build",
"main": "server.js",
"scripts": {
"test": "mocha -R spec spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drone-demos/drone-with-nodejs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/drone-demos/drone-with-nodejs/issues"
},
"homepage": "https://github.com/drone-demos/drone-with-nodejs#readme",
"dependencies": {
"express": "^4.16.3"
},
"devDependencies": {
"mocha": "^5.2.0",
"supertest": "^3.1.0"
}
}