forked from andrglo/mssql-cr-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 919 Bytes
/
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
{
"name": "mssql-cr-layer",
"version": "2.0.15",
"description": "A MS SQL Server interface layer for common requests",
"repository": "andrglo/mssql-cr-layer",
"author": {
"name": "Andre Gloria",
"email": "[email protected]"
},
"files": [
"src"
],
"main": "src/index.js",
"keywords": [
"SQL Server",
"mssql",
"sql",
"common",
"requests",
"interface"
],
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.19.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"scripts": {
"test": "nyc mocha --bail --exit --timeout 15000 test/index.js",
"test:report:coverage": "nyc report --reporter=text-lcov | coveralls",
"ssh": "docker exec -it mssql-cr-layer_dms_1 fish"
},
"license": "MIT",
"dependencies": {
"lodash.every": "^4.6.0",
"mssql": "^8.1.2"
}
}