aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: ba898d240e360dacd4bb722dff31b66438bfbbb3 (plain)
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
{
  "name": "dasein",
  "version": "0.0.0",
  "description": "A social network",
  "main": "lib/dasein.js",
  "repository": {
    "url": "git@github.com:rbdr/dasein.git",
    "type": "git"
  },
  "author": "Ben Beltran <ben@nsovocal.com>",
  "license": "MIT",
  "bin": {
    "dasein": "./bin/dasein.js"
  },
  "scripts": {
    "lint": "eslint .",
    "start": "node ./bin/dasein.js",
    "test": "echo \"Error: no test specified... sorry D:\""
  },
  "devDependencies": {
    "eslint": "^3.12.1",
    "eslint-config-hapi": "^10.0.0",
    "eslint-plugin-hapi": "^4.0.0"
  },
  "dependencies": {
    "getenv": "^0.7.0",
    "jsonwebtoken": "^7.2.1",
    "koa": "^1.2.4",
    "koa-jwt": "^1.2.0",
    "koa-route": "^2.4.2",
    "koa-static": "^2.0.0",
    "oauth": "^0.9.15",
    "pify": "^2.3.0"
  }
}