-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "kinesis-events",
"version": "3.0.0",
"description": "AWS Kinesis event parser and handler for Lambda consumers",
"main": "index.js",
"scripts": {
"build": "npm run docs && npm run test",
"test": "./node_modules/.bin/mocha",
"test-coverage": "nyc --reporter html npm test",
"coveralls": "nyc --reporter=lcovonly npm test -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"docs": "jsdoc2md > README.md",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jsdoc2md": {
"template": "build/README.hbs",
"files": [
"./index.js",
"./lib/*.js"
],
"partial": [
"./build/sig-name.hbs",
"./build/sig-link-parent.hbs",
"./build/sig-link.hbs"
],
"module-index-format": "none",
"global-index-format": "grouped",
"member-index-format": "list"
},
"repository": {
"type": "git",
"url": "https://github.com/KyleRoss/kinesis-events.git"
},
"keywords": [
"kinesis",
"aws",
"event",
"events",
"parser",
"parse",
"handler",
"json"
],
"author": "Kyle Ross <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KyleRoss/kinesis-events/issues"
},
"homepage": "https://github.com/KyleRoss/kinesis-events#readme",
"engines": {
"node": ">= 8"
},
"dependencies": {
"json-parse-better-errors": "^1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.12",
"coveralls": "^3.0.4",
"husky": "^3.0.9",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"semantic-release": "^15.13.30"
}
}