-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hapi-bouncer",
"version": "1.2.0",
"description": "hapi bouncer proxy",
"repository": {
"type": "git",
"url": "https://github.com/zerkalica/hapi-bouncer"
},
"bin": {
"hapi-bouncer": "bin/hapi-bouncer"
},
"config": {
"builddir": "."
},
"scripts": {
"prepublish": "npm run build",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepush": "npm test",
"update": "ncu -ua && npm install",
"clean": "rm -rf $npm_package_config_builddir/dist",
"build": "npm run clean && babel src --ignore=__tests__ --source-maps --out-dir $npm_package_config_builddir/dist",
"build.dep": "npm-helpers/build-deps.sh",
"build.dev": "npm run build -- --watch",
"lint": "eslint .",
"check": "flow check",
"testonly": "mocha",
"test": "flow check && mocha",
"test.dev": "mocha --growl --watch"
},
"keywords": [
"web",
"ssl",
"proxy",
"bouncer",
"hapi"
],
"files": [
"*.map",
"*.js",
"*.flow",
".flowconfig",
"README.md",
"LICENSE",
"src",
"bin",
"flow-typed",
"dist"
],
"author": "Stefan Zerkalica <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.6.3",
"yargs": "^7.0.2",
"node-config-loader": "^3.0.8",
"find-root": "^1.0.0",
"h2o2": "^5.4.0",
"hapi": "^16.1.1",
"inert": "^4.2.0",
"vision": "^4.1.1",
"wreck": "^12.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-espower": "^2.3.2",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"glob": "^7.1.1",
"husky": "^0.13.3",
"mocha": "^3.2.0",
"power-assert": "^1.4.2",
"sinon": "^2.1.0"
}
}