-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "twitter",
"version": "1.0.0",
"description": "The Best Twitter Knock-off EVER!",
"main": "index.js",
"scripts": {
"codeclimate": "CODECLIMATE_REPO_TOKEN=a36cfa45c3de9bfd629b48b33daec20b2c9a573d7ecefb9db09ac6afcd9e16db codeclimate-test-reporter < ./coverage/lcov.info",
"test": "./node_modules/.bin/tape ./test/backend.js && npm run coverage",
"start": "node index.js",
"jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore .",
"coverage": "istanbul cover ./node_modules/.bin/tape ./test/backend.js"
},
"repository": {
"type": "git",
"url": "https://github.com/liberty-x/twitter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/liberty-x/twitter/issues"
},
"homepage": "https://github.com/liberty-x/twitter#readme",
"dependencies": {
"codecov.io": "^0.1.6",
"env2": "^2.0.2",
"pre-commit": "^1.1.1",
"redis": "^2.1.0"
},
"pre-commit": [],
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.3.22",
"nodemon": "^1.7.1",
"shot": "^1.7.0",
"tape": "^4.2.1"
}
}