-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "skwell",
"version": "12.0.0",
"description": "SQL Server Client pooled and promised",
"main": "src/index.js",
"files": [
"/src",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalBush/skwell.git"
},
"scripts": {
"test": "nyc -r text-summary -r lcov mocha -r spec/init -R spec 'spec/**/*.spec.js'",
"test:watch": "mocha -r spec/init -R spec -w 'spec/**/*.spec.js'",
"cover:show": "open coverage/lcov-report/index.html",
"sql:start": "docker-compose -f spec/setup/docker-compose.yml up --wait",
"sql:stop": "docker-compose -f spec/setup/docker-compose.yml down"
},
"author": "",
"license": "ISC",
"dependencies": {
"callsites": "^3.1.0",
"generic-pool": "^3.9.0",
"tedious": "^19.0.0"
},
"devDependencies": {
"app-module-path": "^2.2.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint-config-leankit": "^7.0.0",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0"
},
"nyc": {
"include": [
"src"
],
"cache": true,
"all": true
}
}