-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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": "quacker",
"version": "1.0.0",
"description": "moneymoneymoney",
"main": "index.js",
"scripts": {
"test": "node test/*.js",
"start": "nodemon server.js",
"coverage": "./node_modules/.bin/istanbul cover ./test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 90 --functions 100 --lines 90 --branches 85",
"jshint": "jshint -c .jshintrc --exclude-path .gitignore .",
"codeclimate": "CODECLIMATE_REPO_TOKEN=2c649d2c03f0a397f5fb843024798c0ff07030cbeb78c49d5ca30511a49a94cb codeclimate < ./coverage/lcov.info"
},
"pre-commit": [
"jshint",
"coverage"
],
"repository": {
"type": "git",
"url": "https://github.com/plastic-cup/quacker.git"
},
"keywords": [
"quax",
"tweets",
"crud",
"learning",
"fac",
"ripoff",
"riches"
],
"author": "plastic-cup",
"license": "ISC",
"bugs": {
"url": "https://github.com/plastic-cup/quacker/issues"
},
"homepage": "https://github.com/plastic-cup/quacker",
"dependencies": {
"mime": "^1.3.4",
"nodemon": "^1.3.7",
"redis": "^0.12.1",
"request": "^2.57.0",
"socket.io": "^1.3.5"
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"istanbul": "^0.3.14",
"jshint": "^2.8.0",
"pre-commit": "^1.0.7"
}
}