-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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": "json-db-api",
"version": "1.4.2",
"description": "Simple JSON API server like jsonbase/myjson",
"keywords": [
"json",
"api",
"database",
"jsonbase",
"myjson"
],
"main": "index.js",
"author": "Ivan Alexandrov",
"license": "MIT",
"dependencies": {
"eventemitter2": "^6.4.4",
"fast-json-patch": "^3.0.0-1",
"fastify": "^3.14.0",
"fastify-cors": "^5.2.0",
"fastify-rate-limit": "^5.5.0",
"knex": "^0.95.2",
"minimist": "^1.2.5",
"pino-pretty": "^4.7.1",
"sqlite3": "^5.0.2",
"update-notice": "^0.1.3"
},
"bin": {
"json-db-api": "bin/json-db-api"
},
"homepage": "https://github.com/Rundik/json-db-api#readme",
"bugs": {
"url": "https://github.com/Rundik/json-db-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Rundik/json-db-api.git"
},
"devDependencies": {
"tap": "^14.11.0"
},
"scripts": {
"test": "tap --watch",
"test-coverage": "tap --reporter=list --watch",
"test-migrate": "npx knex --knexfile knexfile_test.js migrate:up"
}
}