forked from mariadb-corporation/mariadb-connector-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.31 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
{
"name": "mariadb",
"version": "2.5.0",
"description": "fast mariadb/mysql connector.",
"main": "promise.js",
"types": "types/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"private": false,
"scripts": {
"test": "npm run test:types-prettier && npm run test:prettier && npm run test:types && npm run test:lint && npm run test:base",
"test:base": "mocha \"test/**/*.js\" ",
"test:lint": "eslint \"{lib,test}/**/*.js\" ",
"test:types": "eslint \"types/*.ts\" ",
"test:types-prettier": "prettier --write \"types/*.ts\"",
"test:prettier": "prettier --write \"{tools,lib,test,benchmarks}/**/*.js\"",
"coverage": "npm run coverage:test && npm run coverage:report",
"coverage:test": "nyc mocha \"test/**/*.js\"",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"benchmark": "node ./benchmarks/benchmarks.js",
"generate": "node ./tools/generate-mariadb.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariadb-corporation/mariadb-connector-nodejs.git"
},
"keywords": [
"mariadb",
"mysql",
"client",
"driver",
"connector"
],
"files": [
"lib",
"types/index.d.ts",
"promise.js",
"callback.js"
],
"engines": {
"node": ">= 10.13"
},
"author": "Diego Dupin <[email protected]>",
"license": "LGPL-2.1-or-later",
"dependencies": {
"@types/geojson": "^7946.0.7",
"@types/node": "^14.11.2",
"denque": "^1.4.1",
"iconv-lite": "^0.6.2",
"long": "^4.0.0",
"moment-timezone": "^0.5.31",
"please-upgrade-node": "^3.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"codecov": "^3.8.0",
"colors": "^1.4.0",
"dom-parser": "^0.1.6",
"error-stack-parser": "^2.0.6",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"bugs": {
"url": "https://jira.mariadb.org/projects/CONJS/"
},
"homepage": "https://github.com/mariadb-corporation/mariadb-connector-nodejs#readme"
}