-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 918 Bytes
/
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
{
"name": "node-dbs",
"version": "1.2.2",
"description": "Nodejs 数据库连接,(Nodejs Database Connectivity,简称nodedbc),支持多种数据库连接",
"main": "./dist/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha test/mongodb.spec.ts --require ts-node/register/transpile-only"
},
"keywords": [
"nodejs",
"mysql",
"mongodb",
"redis",
"database",
"es2015",
"es6",
"promise"
],
"author": "ipenman",
"license": "ISC",
"homepage": "https://github.com/iPenManShip/dbc-node",
"dependencies": {
"await-to-js": "^2.1.1",
"mocha": "^8.1.1",
"mongodb": "^3.6.0",
"mysql": "^2.17.1",
"tracer": "^1.0.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/mongodb": "^3.6.20",
"@types/mysql": "github:types/mysql",
"@types/node": "^13.13.52"
}
}