-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "bs-sql-common",
"version": "6.0.0",
"description": "A common interface common for SQL drivers.",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov",
"precommit": "lint-staged",
"test": "jest --coverage",
"watch:jest": "jest --coverage --watchAll"
},
"lint-staged": {
"*.{re,rei}": [
"refmt --in-place",
"git add"
]
},
"keywords": [
"BuckleScript",
"reason",
"reasonml",
"mysql",
"databases",
"node"
],
"jest": {
"testPathIgnorePatterns": [
"/node_modules",
"<rootDir>/__tests__/TestUtil*"
]
},
"bugs": "https://github.com/scull7/bs-sql-common/issues",
"main": "src/SqlWrapper.bs.js",
"homepage": "https://github.com/scull7/bs-sql-common",
"repository": "[email protected]:scull7/bs-sql-common.git",
"author": "Nathan Sculli <[email protected]>",
"license": "MIT",
"dependencies": {
"@buckeye/bs-tarn": "^1.0.0",
"@glennsl/bs-json": "^2.0.0",
"bs-node-debug": "^0.2.0",
"sqlstring": "^2.3.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-mysql2": "8.2.1",
"bs-platform": "^4.0.1",
"coveralls": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"mysql2": "^1.5.3",
"nyc": "^11.8.0"
},
"peerDependencies": {}
}