forked from scull7/bs-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "bs-sqlite",
"version": "1.0.0",
"description": "A wrapper for the sqlite3 driver",
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"start": " yarn install ; bsb -clean-world ; bsb -make-world -w",
"test": "bsb -clean-world ; bsb -make-world ; jest --coverage ; yarn coverage ",
"precommit": "lint-staged",
"watch:test": "jest --coverage --watchAll"
},
"lint-staged": {
"*.{re,rei}": [
"refmt --in-place",
"git add"
]
},
"keywords": [
"BuckleScript",
"reason",
"reasonml",
"sql",
"databases",
"node",
"sqlite",
"sqlite3",
"better-sqlite3"
],
"main": "index.js",
"author": "Nathan A Sculli <[email protected]>",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^5.4.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.7",
"@glennsl/bs-json": "^3.0.0",
"bs-platform": "^4.0.18",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"nyc": "^11.4.1"
}
}