forked from nearform/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 KB
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
{
"name": "@nearform/sql",
"version": "1.5.0",
"description": "SQL injection protection module",
"main": "./SQL.js",
"types": "./SQL.d.ts",
"scripts": {
"test": "tap *.test.js",
"posttest": "tsd",
"test:security": "node ./sqlmap/sqlmap.js",
"test:typescript": "tsd",
"pretest:security": "napa sqlmapproject/sqlmap && node ./sqlmap/db-init.js",
"coverage": "tap *.test.js --coverage",
"lint": "standard",
"benchmark": "node benchmark/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/sql.git"
},
"author": "nearForm Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/nearform/sql/issues"
},
"homepage": "https://github.com/nearform/sql#readme",
"devDependencies": {
"async": "^2.6.2",
"benchmark": "^2.1.4",
"fastify": "^3.7.0",
"fastify-postgres": "^3.1.0",
"jsonfile": "^5.0.0",
"napa": "^3.0.0",
"pg": "^7.10.0",
"sql-template-strings": "^2.2.2",
"standard": "^12.0.1",
"tap": "^12.6.2",
"tsd": "^0.11.0"
},
"standard": {
"ignore": [
"docs/*"
]
}
}