summaryrefslogtreecommitdiff
path: root/client/package.json
blob: 66ea2615d9965f307b36dc3e8dcd2a0e8927986d (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
{
  "name": "naive-client",
  "version": "2.3.4",
  "description": "A naive NoSQL database client",
  "main": "dist/client/src/index.js",
  "types": "dist/client/src/index.d.ts",
  "scripts": {
    "build": "tsc && typedoc --out docs src",
    "test": "jest src"
  },
  "author": "Nicholas Van Doorn",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^23.3.13",
    "@types/node": "^10.12.18",
    "@types/ws": "^6.0.1",
    "jest": "^23.6.0",
    "ts-jest": "^23.10.5",
    "ts-node": "^7.0.1",
    "typedoc": "^0.14.2",
    "typescript": "^3.2.4"
  },
  "dependencies": {
    "@types/node-fetch": "^2.1.4",
    "node-fetch": "^2.3.0"
  }
}