-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "replic-sqlite",
"version": "0.3.2",
"description": "Simple, Fast, Multi-writer, Convergent, Replicated SQLite with 800 LOC only",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git@github.com:carboneio/replic-sqlite.git"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"dist/keep_last-*",
"binding.gyp",
"src/**",
"lib/**"
],
"scripts": {
"test": "./node_modules/.bin/mocha test --timeout 10000 --exit",
"test:watch": "./node_modules/.bin/mocha -u bdd -t 10000 -w -b --reporter-option maxDiffSize=64632",
"lint": "eslint lib/ test/",
"lint:fix": "eslint lib/ test/ --fix"
},
"author": "David Grelaud",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/eslintrc": "=3.3.5",
"@eslint/js": "=10.0.1",
"eslint": "=10.0.3",
"globals": "=17.4.0",
"mocha": "=12.0.0-beta-10",
"mockdate": "=3.0.5"
},
"dependencies": {
"better-sqlite3": "=12.6.2",
"croner": "=10.0.1",
"debug": "=4.4.3"
}
}