forked from mysqljs/sqlstring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 997 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": "sqlstring",
"description": "Simple SQL escape and format for MySQL",
"version": "2.2.0",
"contributors": [
"Adri Van Houdt <[email protected]>",
"Douglas Christopher Wilson <[email protected]>",
"fengmk2 <[email protected]> (http://fengmk2.github.com)",
"Nathan Woltman <[email protected]>"
],
"license": "MIT",
"keywords": [
"sqlstring",
"sql",
"escape",
"sql escape"
],
"repository": "mysqljs/sqlstring",
"devDependencies": {
"eslint": "3.19.0",
"eslint-plugin-markdown": "1.0.0-beta.6",
"nyc": "10.3.2",
"urun": "0.0.8",
"utest": "0.0.8"
},
"files": [
"lib/",
"HISTORY.md",
"LICENSE",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.6"
},
"scripts": {
"lint": "eslint --plugin markdown --ext js,md .",
"test": "node test/run.js",
"test-ci": "nyc --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}