Browse Source

Test driven development.

pull/41/head
Eric Lang 3 years ago
committed by GitHub
parent
commit
5d70711c7f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      server/package.json

+ 7
- 2
server/package.json View File

@ -4,14 +4,15 @@
"description": "Generates graphs of github things.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test": "mocha --exit --reporter spec",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrtechs/github-graphs.git"
},
"author": "Jeffery Russell",
"author": "Jeffery Russell, Eric Lang",
"license": "ISC",
"bugs": {
"url": "https://github.com/jrtechs/github-graphs/issues"
@ -25,4 +26,8 @@
"got": "^9.6.0",
"memory-cache": "^0.2.0"
}
"devDependencies": {
"coveralls": "*",
"mocha": "*",
"nyc": "*"
}

Loading…
Cancel
Save