-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "@nearform/sql",
"version": "1.10.8",
"description": "SQL injection protection module",
"main": "./SQL.js",
"types": "./SQL.d.ts",
"scripts": {
"test": "node --test *.test.js",
"posttest": "tstyche",
"test:security": "node ./sqlmap/sqlmap.js",
"test:typescript": "tstyche",
"pretest:security": "git clone --depth=1 https://github.com/sqlmapproject/sqlmap node_modules/sqlmap && node ./sqlmap/db-init.js",
"lint": "standard",
"benchmark": "node benchmark/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/sql.git"
},
"author": "NearForm Ltd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nearform/sql/issues"
},
"homepage": "https://github.com/nearform/sql#readme",
"devDependencies": {
"@fastify/postgres": "^6.0.2",
"async": "^3.2.6",
"benchmark": "^2.1.4",
"fastify": "^5.8.5",
"jsonfile": "^6.2.1",
"pg": "^8.20.0",
"sql-template-strings": "^2.2.2",
"standard": "^17.1.2",
"tstyche": "^7.1.0"
},
"standard": {
"ignore": [
"docs/*"
]
}
}