forked from bitfinexcom/bfx-facs-db-better-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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": "bfx-facs-db-better-sqlite",
"version": "0.0.1",
"description": "Bitfinex DB Sqlite3 Facility",
"author": {
"name": "Vladimir Voronkov",
"email": "[email protected]"
},
"main": "index.js",
"keywords": [
"bitfinex"
],
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "mocha './test/**/*.spec.js' --config .mocharc.json",
"lint": "standard --env mocha"
},
"dependencies": {
"async": "3.2.4",
"better-sqlite3": "11.7.2",
"bfx-facs-base": "git+https://github.com/bitfinexcom/bfx-facs-base.git"
},
"engine": {
"node": ">=18.17.1"
},
"license": "Apache-2.0",
"contributors": [
"Paolo Ardoino <[email protected]>",
"Ezequiel Wernicke <[email protected]>",
"Vladimir Voronkov <[email protected]>"
],
"devDependencies": {
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"mocha": "^10.1.0",
"standard": "^17.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}