-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "@ikoala/node-mysql-promise",
"version": "1.4.12",
"description": "Node.js MySQL library promise wrapper",
"main": "./dist/main.js",
"types": "./dist/src/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "mocha",
"bundle": "webpack",
"dev": "webpack --watch",
"eslint": "eslint index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iKoala/node-mysql-promise.git"
},
"keywords": [],
"author": "iKoala",
"license": "ISC",
"bugs": {
"url": "https://github.com/iKoala/node-mysql-promise/issues"
},
"homepage": "https://github.com/iKoala/node-mysql-promise#readme",
"dependencies": {
"dotenv": "^16.0.1",
"lodash": "^4.17.21",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/mysql": "^2.15.21",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.5",
"mocha": "^10.0.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"directories": {
"test": "test"
}
}