-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "blaine",
"version": "6.0.0",
"description": "File type validation for hapi raw in-memory request payloads",
"main": "lib/index.js",
"scripts": {
"changelog": "github_changelog_generator --header-label='# Changelog'",
"coveralls": "lab -r lcov | ./node_modules/.bin/coveralls",
"test": "lab -a code -t 100 -L",
"test-tap": "lab -a code -r tap -o tests.tap",
"test-cov-html": "lab -a code -r html -o coverage.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruiquelhas/blaine.git"
},
"keywords": [
"file",
"hapi",
"multipart/form-data",
"payload",
"signature",
"validation"
],
"author": "Rui Quelhas <rfpquelhas@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ruiquelhas/blaine/issues"
},
"homepage": "https://github.com/ruiquelhas/blaine#readme",
"devDependencies": {
"code": "5.x.x",
"content": "4.x.x",
"coveralls": "3.x.x",
"hapi": "17.x.x",
"lab": "15.x.x",
"multi-part": "2.x.x"
},
"dependencies": {
"copperfield": "4.x.x",
"recourier": "2.x.x",
"subtext": "6.x.x",
"wreck": "14.x.x"
},
"engines": {
"node": ">=8.9.0"
}
}