-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
33 lines (33 loc) · 927 Bytes
/
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
{
"name": "jugglingdb-sqlite3",
"version": "0.1.0",
"engines": {
"node": ">=4"
},
"description": "SQLite3 adapter for jugglingdb",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"lint": "eslint lib/ test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-coverage": "istanbul cover node_modules/.bin/_mocha -- -R dot"
},
"dependencies": {
"debug": "^2.2.0",
"jugglingdb": "=2.0.0-rc8",
"sqlite3": "^3.1.8"
},
"devDependencies": {
"eslint": "^3.1.0",
"eslint-config-1602": "^1.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^2.5.3",
"should": "^9.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jugglingdb/sqlite3-adapter.git"
},
"author": "Anatoliy Chakkaev <mail@anatoliy.in>",
"license": "MIT"
}