-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "avert",
"version": "1.1.0",
"description": "HapiJS request sanitizer.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=8.9.3"
},
"scripts": {
"cover": "lab -c -v -L -a code",
"prettier": "prettier --single-quote --write 'lib/*.js'",
"precommit": "lint-staged",
"start": "node lib/index.js",
"test": "lab -c -v -L -a code"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --single-quote --write",
"git add"
]
},
"dependencies": {
"@hapi/hoek": "^9.0.4",
"@hapi/joi": "^17.1.1",
"lodash": "^4.17.15",
"sanitizer": "^0.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asabzposh/avert.git"
},
"keywords": [
"hapi",
"request",
"sanitizer"
],
"author": "Areeb Sabzposh",
"license": "MIT",
"bugs": {
"url": "https://github.com/asabzposh/avert/issues"
},
"homepage": "https://github.com/asabzposh/avert#readme",
"devDependencies": {
"blipp": "^3.1.3",
"boom": "^7.3.0",
"code": "^5.2.4",
"coveralls": "^3.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint": ">=5.0.0",
"@hapi/hapi": "^19.1.1",
"@hapi/lab": "^20.0.4",
"prettier": "^1.19.1"
}
}