-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
109 lines (109 loc) · 2.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "seriate",
"version": "5.0.0",
"description": "A cross platform module for Microsoft SQL Server that wraps node-mssql",
"main": "src/index.js",
"author": "LeanKit",
"homepage": "http://github.com/leankit-labs/seriate",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/seriate"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"contributors": [
{
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://ifandelse.com"
},
{
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://nerdventure.io"
},
{
"name": "Ryan Niemeyer",
"email": "[email protected]",
"url": "http://knockmeout.net"
},
{
"name": "Brian Edgerton",
"email": "[email protected]"
},
{
"name": "Scott Walters",
"email": "[email protected]"
},
{
"name": "David Neal",
"url": "https://github.com/reverentgeek"
},
{
"name": "Calvin Bottoms",
"url": "https://github.com/calvinb"
},
{
"name": "Josh Bush",
"url": "https://github.com/digitalbush"
}
],
"dependencies": {
"@xmldom/xmldom": "^0.8.3",
"callsite": "^1.0.0",
"debug": "^4.3.1",
"lodash": "^4.17.21",
"machina": "^4.0.2",
"mssql": "~2.3.2",
"tedious": "~1.13.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint-config-leankit": "^6.0.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.1",
"sinon-chai": "^3.7.0"
},
"scripts": {
"lint": "eslint --fix ./",
"pretest": "npm run lint",
"test:only": "NODE_ENV=test mocha --exit -r spec/init -R spec 'spec/**/*.spec.js'",
"test:int": "NODE_ENV=test mocha --exit -r spec/init -R spec 'spec/integration/**/*.spec.js'",
"test:ci": "NODE_ENV=test mocha --exit -r spec/init -R spec 'spec/behavior/**/*.spec.js'",
"test:watch": "nodemon --exec \"NODE_ENV=test mocha --exit -r spec/init -R progress 'spec/**/*.spec.js' || true\"",
"test:watchci": "nodemon --exec \"NODE_ENV=test mocha --exit -r spec/init -R progress 'spec/behavior/**/*.spec.js' || true\"",
"test": "npm run cover",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:ci": "nyc -r text-summary -r html -- npm run test:ci",
"cover:int": "nyc -r text-summary -r html -- npm run test:int",
"cover:show": "open \"file://$PWD/coverage/index.html\""
},
"files": [
"LICENSE",
"src"
],
"nyc": {
"exclude": [
".eslintrc.js",
"coverage",
"example",
"spec"
],
"sourceMap": false,
"instrument": true,
"all": true
},
"nodemonConfig": {
"ext": "js,json,sql,sql.template",
"ignore": [
".nyc_output/*"
]
}
}