forked from digitalBush/skwell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "skwell",
"version": "6.0.0",
"description": "SQL Server Client pooled and promised",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/digitalBush/skwell.git"
},
"scripts": {
"test": "nyc -r text-summary mocha -r spec/init -R spec 'spec/**/*.spec.js'",
"test:watch": "nodemon --exec \"mocha -r spec/init -R spec 'spec/**/*.spec.js' || true\" -e js,json,sql",
"cover:show": "nyc report --reporter=html && open coverage/index.html",
"sql:start": "docker-compose -f spec/setup/docker-compose.yml up -d",
"sql:wait": "docker exec -it skwell /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P P@ssw0rd -l 60 -Q \"SELECT 1\" > /dev/null",
"sql:stop": "docker-compose -f spec/setup/docker-compose.yml down"
},
"author": "",
"license": "ISC",
"dependencies": {
"callsites": "^3.1.0",
"generic-pool": "^3.7.1",
"readable-stream": "^3.6.0",
"tedious": "^9.2.1"
},
"devDependencies": {
"app-module-path": "^2.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"dirty-chai": "^2.0.1",
"eslint-config-leankit": "^5.2.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"pump": "^3.0.0",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0"
},
"nyc": {
"include": [
"src"
],
"cache": true,
"all": true
}
}