-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1012 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
40
41
42
43
44
45
{
"name": "active-query-builder",
"version": "1.0.5",
"private": false,
"homepage": "https://github.com/sagar-gavhane/active-query-builder",
"description": "Simple and flexible way to write your next MySQL queries.",
"author": "Sagar Gavhane",
"license": "MIT",
"keywords": [
"mysql",
"query-builder",
"nodejs",
"mysqljs",
"active-query-builder"
],
"main": "index.js",
"scripts": {
"test": "jest --watch"
},
"dependencies": {
"lodash": "^4.17.11",
"mysql": "^2.16.0",
"xss": "^1.0.3"
},
"devDependencies": {
"dotenv": "^6.1.0",
"eslint": "^5.8.0",
"faker": "^4.1.0",
"husky": "^1.1.4",
"jest": "^23.6.0",
"semantic-release": "^15.12.0"
},
"husky": {
"hooks": {
"pre-commit": "echo run your test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/sagar-gavhane/active-query-builder"
},
"bugs": {
"url": "https://github.com/sagar-gavhane/active-query-builder/issues"
}
}