forked from mvitlov/firebird-rest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 KB
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
{
"name": "firebird-rest",
"version": "0.0.2",
"description": "REST Server for FirebirdSQL",
"main": "./src/main.js",
"bin": {
"firebird-rest": "./src/main.js"
},
"keywords": [
"firebird",
"sql",
"database",
"db",
"http",
"json",
"rest",
"api",
"node"
],
"author": "Marin Vitlov <marin.vitlov@gmail.com> (https://github.com/mvitlov/)",
"homepage": "https://github.com/mvitlov/firebird-rest",
"repository": {
"type": "git",
"url": "git+https://github.com/mvitlov/firebird-rest.git"
},
"bugs": {
"url": "https://github.com/mvitlov/firebird-rest/issues",
"email": "marin.vitlov@gmail.com"
},
"license": "MIT",
"scripts": {
"start": "node src/main.js",
"install-windows-service": "winser -i",
"uninstall-windows-service": "winser -r"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"express": "^4.16.4",
"flags": "^0.1.3",
"node-firebird-dev": "^1.3.1",
"winser": "^1.0.3"
}
}