-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 855 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
{
"name": "mysql-query",
"description": "wrap mysql and add methods for query",
"version": "1.1.0",
"author": "Ben P.P. Tung",
"bugs": {
"url": "https://github.com/benpptung/mysql-query/issues"
},
"dependencies": {
"debug": "^2.6.8",
"mysql": "^2.13.0",
"mysql2": "^1.3.5"
},
"homepage": {
"url": "https://github.com/benpptung/mysql-query"
},
"keywords": [
"mysql"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/benpptung/mysql-query.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "TIMING=1 eslint . --ignore-pattern node_modules/"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-less": "github:benpptung/eslint-config-less",
"eslint-plugin-node": "^5.1.1"
}
}