-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "queryize",
"version": "3.0.0",
"description": "A no-frills chainable/fluent interface for constructing mutable MySQL queries with data binding/escapement.",
"main": "lib/queryize.js",
"engines": {
"node": ">=8.12"
},
"scripts": {
"test": "tap tests/unit",
"test:unit": "tap tests/unit",
"test:int": "tap tests/integration",
"test:cover": "tap --coverage tests/unit",
"test:travis": "tap --reporter=tap tests/unit",
"lint": "eslint --fix '**/*.js'",
"docs": "node docs/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Twipped/QueryizeJS.git"
},
"keywords": [
"sql",
"mysql",
"query",
"query-builder",
"parameter"
],
"author": "Jocelyn Badgley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Twipped/QueryizeJS/issues"
},
"homepage": "http://queryizejs.com/",
"devDependencies": {
"bluebird": "~3.5.5",
"commonmark": "~0.29.0",
"dox": "^0.9.0",
"eslint": "~6.3.0",
"eslint-config-twipped": "~3.3.0",
"eslint-plugin-node": "~10.0.0",
"eslint-plugin-promise": "^4.1.1",
"handlebars": "~4.3.0",
"mktmpio": "~1.0.0-9",
"mysql": "~2.17.1",
"mysql2": "~1.7.0",
"tap": "~14.6.1"
},
"dependencies": {
"sqlstring": "~2.3.1"
},
"files": [
"lib",
"CHANGELOG.md",
"LICENSE.txt",
"queryize.js",
"docs/index.html",
"docs/fonts.css",
"docs/fonts"
],
"nyc": {
"exclude": [
"tests"
],
"reporter": [
"lcov",
"text"
]
}
}