]>
Commit | Line | Data |
---|---|---|
5e981bca RBR |
1 | { |
2 | "name": "dead-drop", | |
2082455b | 3 | "version": "1.0.0", |
5e981bca RBR |
4 | "description": "A voice communication system", |
5 | "main": "lib/dead_drop.js", | |
6 | "repository": "git@github.com:rbdr/dead-drop.git", | |
7 | "author": "Ben Beltran <ben@nsovocal.com>", | |
8 | "license": "BSD 2-Clause", | |
9 | "bin": { | |
10 | "dead-drop": "./bin/dead_drop.js" | |
11 | }, | |
12 | "scripts": { | |
13 | "document": "jsdoc -c ./config/jsdoc.json lib config", | |
14 | "lint": "eslint .", | |
15 | "start": "node ./bin/dead_drop.js", | |
16 | "test": "echo \"Error: no test specified... sorry D:\"" | |
17 | }, | |
18 | "devDependencies": { | |
19 | "docdash": "^0.4.0", | |
20 | "eslint": "^3.15.0", | |
21 | "eslint-config-hapi": "^10.0.0", | |
22 | "eslint-plugin-hapi": "^4.0.0", | |
23 | "jsdoc": "^3.4.3" | |
24 | }, | |
25 | "dependencies": { | |
26 | "getenv": "^0.7.0", | |
7404eac9 | 27 | "joi": "^10.2.2", |
5e981bca | 28 | "koa": "^1.2.5", |
7404eac9 RBR |
29 | "koa-bodyparser": "^2.3.0", |
30 | "koa-route": "^2.4.2", | |
31 | "pify": "^2.3.0", | |
32 | "redis": "^2.6.5", | |
33 | "twilio": "^2.11.1" | |
5e981bca RBR |
34 | } |
35 | } |