-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover --report lcov _mocha -- --recursive | tee mocha.log && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"start": "nodemon server.js",
"test:local": "./node_modules/.bin/istanbul cover --report lcov _mocha -- --recursive",
"test:s": "mocha",
"apidoc": "apidoc -i api/ -o apidoc/"
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.2.41",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"compression": "^1.6.1",
"cookie-parser": "^1.4.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"jsonwebtoken": "^5.7.0",
"node-fetch": "^1.5.1",
"node-twitter-api": "^1.7.0",
"rethinkdb": "~2.2.2",
"socket.io": "^1.4.5",
"underscore": "^1.8.3",
"uuid-js": "^0.7.5"
},
"devDependencies": {
"coveralls": "^2.11.9",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"nodemon": "^1.9.1",
"should": "^8.3.1",
"socket.io-client": "^1.4.5",
"supertest": "^1.2.0"
},
"apidoc": {
"title": "Convoo API",
"url": "https://api.convoo.me"
}
}