forked from mysqljs/sqlstring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 959 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
{
"name": "sqlstring",
"description": "Simple SQL escape and format for MySQL",
"version": "2.0.1",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"fengmk2 <fengmk2@gmail.com> (http://fengmk2.github.com)",
"Nathan Woltman <nwoltman@outlook.com>"
],
"license": "MIT",
"keywords": [
"sqlstring",
"sql",
"escape",
"sql escape"
],
"repository": "mysqljs/sqlstring",
"devDependencies": {
"eslint": "2.11.1",
"istanbul": "0.4.3",
"mkdirp": "0.5.1",
"require-all": "2.0.0",
"rimraf": "2.2.8",
"urun": "0.0.8",
"utest": "0.0.8"
},
"files": [
"lib/",
"HISTORY.md",
"LICENSE",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.6"
},
"scripts": {
"lint": "eslint lib/**/*.js index.js test/**/*.js",
"test": "node test/run.js",
"test-ci": "node test/run-cov.js lcovonly",
"test-cov": "node test/run-cov.js"
}
}