-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.39 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
{
"name": "rhino",
"version": "5.5.7",
"description": "Rhino is a production-focused Microsoft SQL Server driver for Node.JS.",
"main": "rhino.js",
"engines": {
"node": ">=12.3.0"
},
"scripts": {
"test": "./node_modules/jest/bin/jest.js",
"lint": "./node_modules/.bin/eslint ./",
"doc": "./node_modules/jsdoc-to-markdown/bin/cli.js --template README.hbs > ./README.md",
"docs": "npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chriseaton/rhino.git"
},
"keywords": [
"mssql",
"pool",
"database",
"driver",
"tedious",
"sql",
"server",
"microsoft",
"sql"
],
"author": "Christopher Eaton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chriseaton/rhino/issues"
},
"homepage": "https://github.com/chriseaton/rhino#readme",
"dependencies": {
"tarn": "^2.0.0",
"tedious": "^14.6.1"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"dotenv": "^10.0.0",
"eslint": "^8.4.1",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.4.3",
"jsdoc-to-markdown": "^7.1.0"
},
"jsdoc2md": {
"files": "{,!(node_modules|test)/**/}*!(*.test|*.ignore).js",
"separators": true
}
}