-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"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"
}
}