package.json
{ "name": "canary", "version": "1.0.0", "description": "Twitter v2", "main": "server.js", "directories": { "test": "test" }, "scripts": { "test": "node test/*.js", "coverage": "./node_modules/.bin/istanbul cover test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 90 --functions 100 --lines 90 --branches 90", "nocov": "node test/*.js", "codeclimate": "CODECLIMATE_REPO_TOKEN=08ea06a96d84eb645b326dbfc18acc18ff04faccd655324136251a2fbba296e2 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info", "start": "nodemon server.js", "jshint": "jshint -c .jshintrc --exclude-path .gitignore .", "istanbul": "istanbul", "go": "foreman run nodemon server.js" }, "repository": { "type": "git", "url": "https://github.com/jmnr/canary.git" }, "author": "jmnr", "license": "ISC", "bugs": { "url": "https://github.com/jmnr/canary/issues" }, "homepage": "http://canaryapp.herokuapp.com/", "pre-commit": [ "jshint", "coverage" ], "engines": { "node": ">= 0.10" }, "devDependencies": { "codeclimate-test-reporter": "0.0.4", "shot": "^1.5.0", "fakeredis": "0.3.1", "istanbul": "^0.3.14", "jshint": "^2.7.0", "pre-commit": "^1.0.7" }, "dependencies": { "hiredis": "^0.4.0", "redis": "^0.12.1", "socket.io": "^1.3.5" }}