-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
47
48
{
"name": "loopback-connector-sqlite3",
"version": "3.0.0",
"description": "Loopback SQLite3 Connector",
"engines": {
"node": "10 || 12 || 14 || 16"
},
"keywords": [
"StrongLoop",
"LoopBack",
"SQLite",
"SQLite3",
"DataSource",
"Connector"
],
"main": "index.js",
"scripts": {
"lint": "eslint ./ && jscs ./",
"pretest": "npm run lint",
"test": "nyc --reporter=lcov mocha -R spec -b --timeout 10000 --require test/init.js test/*.test.js"
},
"dependencies": {
"async": "^2.6.1",
"debug": "^3.1.0",
"loopback-connector": "^4.5.1",
"moment": "^2.10.3",
"sqlite3": "^4.0.2",
"strong-globalize": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"bluebird": "^3.5.1",
"eslint": "^0.23.0",
"jscs": "^1.13.1",
"loopback-datasource-juggler": "^3.36.1",
"mktmpdir": "^0.1.1",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"rc": "^1.0.0",
"should": "^8.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-connector-sqlite3.git"
},
"license": "Artistic-2.0"
}