forked from TehShrike/joi-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 845 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
{
"name": "joi-sql",
"version": "1.1.3",
"description": "Create Joi validation code for MySQL databases",
"main": "index.js",
"scripts": {
"test": "tape test/building.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TehShrike/joi-sql.git"
},
"keywords": [
"joi",
"sql",
"mysql",
"schema",
"duck",
"typing",
"quack"
],
"author": "TehShrike",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TehShrike/joi-sql/issues"
},
"homepage": "https://github.com/TehShrike/joi-sql",
"devDependencies": {
"tape": "^4.0.0"
},
"dependencies": {
"camelize": "^1.0.0",
"minimist": "^1.1.1",
"mysql": "^2.6.2",
"sql-concat": "^1.0.0",
"to-camel-case": "^0.2.1"
},
"preferGlobal": true,
"bin": {
"joi-sql": "./index.js"
}
}