forked from ar4mirez/hapi-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "hapi-aws",
"version": "0.0.0-development",
"description": "AWS plugin for HapiJS.",
"main": "lib/index.js",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"scripts": {
"commit": "git-cz",
"coverage": "lab -r lcov -o coverage/lcov.info && npm t",
"coverage:check": "lab -t 100",
"coverage:local": "lab -c -r html -o ./test/artifacts/coverage.html && open ./test/artifacts/coverage.html",
"coverage:report": "lab -r lcov | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"setup": "npm install",
"test": "lab -c -C -L -S -t 100 -a code"
},
"repository": {
"type": "git",
"url": "https:[email protected]:ar4mirez/hapi-aws.git"
},
"author": "Angel Ramirez <[email protected]>",
"license": "LICENSE.md",
"bugs": {
"url": "https://github.com/ar4mirez/hapi-aws/issues"
},
"homepage": "https://github.com/ar4mirez/hapi-aws",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"code": "5.x.x",
"codecov": "^3.0.2",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint-config-hapi": "^12.0.0",
"eslint-plugin-hapi": "^4.1.0",
"fixpack": "^2.3.1",
"hapi": "^17.5.1",
"lab": "15.x.x",
"semantic-release": "^15.6.0"
},
"dependencies": {
"aws-sdk": "^2.261.1"
}
}