-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "lxriddle",
"version": "1.0.0",
"description": "The search for a riddle-based forum is over",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/tape ./test/backendTest.js",
"start": "node server.js",
"coverage": "istanbul cover ./node_modules/.bin/tape ./test/backendTest.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=54de240d29ec50acf7ddcf35f7c31a3812721e1cb57a001e059966aab4745383 codeclimate-test-reporter < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/liberty-x/lxriddle.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/liberty-x/lxriddle/issues"
},
"homepage": "https://github.com/liberty-x/lxriddle#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.3.22",
"pre-commit": "^1.1.1",
"shot": "^1.7.0",
"tape": "^4.2.1"
},
"pre-commit": [
"test",
"coverage"
],
"dependencies": {
"jsonwebtoken": "^5.4.0",
"redis": "^2.2.3",
"socket.io": "^1.3.7",
"uuid": "^2.0.1"
}
}