forked from mbuster/loopback-connector-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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
{
"name": "loopback-connector-sqlite",
"version": "1.5.0",
"description": "LoopBack SQLite3 Database Connector. LoopBack is an API Mgmt/MBaas platform built on top of express by StrongLoop. It supports the notion of connectors to connect to databases, restful web services, soap web services etc.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec test --timeout 10000"
},
"repository": {
"type": "git",
"url": "https://github.com/Synerzip/loopback-connector-sqlite"
},
"keywords": [
"Strongloop",
"Loopback",
"Connector",
"SQLite",
"SQLite3"
],
"author": "Tushar Chauhan <chauhan.tushar@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Synerzip/loopback-connector-sqlite/issues"
},
"homepage": "https://github.com/Synerzip/loopback-connector-sqlite",
"dependencies": {
"async": "^0.9.0",
"debug": "^2.1.3",
"loopback-connector": "2.x",
"sqlite3": "^3.1.1",
"sqlite3-transactions": "^0.0.5"
},
"devDependencies": {
"chai": "^2.1.2",
"loopback-datasource-juggler": "~2.45.1",
"mocha": "^2.1.0",
"should": "^8.0.2",
"rc": "^1.0.1"
}
}