-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "sqlstring",
"description": "Simple SQL escape and format for MySQL",
"version": "2.3.3",
"contributors": [
"Adri Van Houdt <[email protected]>",
"Douglas Christopher Wilson <[email protected]>",
"fengmk2 <[email protected]> (http://fengmk2.github.com)",
"Kevin Jose Martin <[email protected]>",
"Nathan Woltman <[email protected]>",
"Sergej Sintschilin <[email protected]>"
],
"license": "MIT",
"keywords": [
"sqlstring",
"sql",
"escape",
"sql escape"
],
"repository": "mysqljs/sqlstring",
"devDependencies": {
"beautify-benchmark": "0.2.4",
"benchmark": "2.1.4",
"eslint": "8.10.0",
"eslint-plugin-markdown": "2.2.1",
"nyc": "15.1.0",
"urun": "0.0.8",
"utest": "0.0.8"
},
"files": [
"lib/",
"HISTORY.md",
"LICENSE",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.6"
},
"scripts": {
"bench": "node benchmark/index.js",
"lint": "eslint .",
"test": "node test/run.js",
"test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}