forked from nolanlawson/node-websql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "websql",
"version": "2.0.2",
"description": "WebSQL Database API, implemented for Node using sqlite3",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/node-websql.git"
},
"bugs": {
"url": "https://github.com/nolanlawson/node-websql/issues"
},
"main": "lib/index.js",
"browser": {
"lib/index.js": "lib/browser.js",
"crypto": false,
"fs": false,
"levelup": false,
"leveldown": false,
"level": false,
"rimraf": false,
"mkdirp": false,
"sqlite3": false
},
"keywords": [
"websql",
"sql",
"opendatabase",
"sqlite",
"storage",
"sqlite3",
"database"
],
"scripts": {
"test": "mocha test/test.js",
"lint": "jshint -c .jshintrc lib test",
"test-debug": "mocha --debug-brk test/test.js",
"test-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- test/test.js",
"ensure-coverage": "istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100",
"coverage": "run-s test-coverage ensure-coverage"
},
"author": "Nolan Lawson <nolan@nolanlawson.com>",
"license": "Apache-2.0",
"dependencies": {
"argsarray": "^0.0.1",
"immediate": "^3.2.2",
"noop-fn": "^1.0.0",
"tiny-queue": "^0.2.1"
},
"optionalDependencies": {
"sqlite3": "^5.0.2"
},
"devDependencies": {
"assert": "1.3.0",
"bluebird": "3.3.5",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"denodeify": "1.2.1",
"double-ended-queue": "2.1.0-0",
"istanbul": "^0.4.5",
"js-extend": "1.0.1",
"jshint": "^2.12.0",
"level-write-stream": "1.0.0",
"levelup": "1.3.1",
"lie": "3.0.2",
"mkdirp": "^1.0.4",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.5",
"pouchdb-collate": "1.2.0",
"pouchdb-collections": "^1.0.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"scope-eval": "0.0.3",
"spark-md5": "2.0.2",
"sublevel-pouchdb": "1.0.0",
"vuvuzela": "1.0.3"
},
"files": [
"lib",
"custom"
]
}