-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "@nearform/sql",
"version": "1.10.5",
"description": "SQL injection protection module",
"main": "./SQL.js",
"types": "./SQL.d.ts",
"scripts": {
"test": "node --test *.test.js",
"posttest": "tsd",
"test:security": "node ./sqlmap/sqlmap.js",
"test:typescript": "tsd",
"pretest:security": "napa https://github.com/sqlmapproject/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": "^5.2.0",
"async": "^3.2.0",
"benchmark": "^2.1.4",
"fastify": "^4.0.1",
"jsonfile": "^6.1.0",
"napa": "^3.0.0",
"pg": "^8.6.0",
"sql-template-strings": "^2.2.2",
"standard": "^17.0.0",
"tsd": "^0.31.0"
},
"standard": {
"ignore": [
"docs/*"
]
}
}