-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
96 lines (96 loc) · 2.57 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "lifion-kinesis",
"version": "1.3.3",
"description": "Lifion client for Amazon Kinesis Data streams",
"keywords": [
"adp",
"amazon",
"api",
"aws",
"big data",
"client",
"core",
"kinesis",
"lifion"
],
"author": "Edgardo Avilés <[email protected]>",
"maintainers": [
"Bryan Oemler <[email protected]>",
"Edgardo Avilés <[email protected]>",
"Jenny Eckstein <[email protected]>"
],
"contributors": [
"Chen Doron <[email protected]>",
"Simon Gellis <[email protected]>",
"Mackenzie Turner <[email protected]>",
"Zaid Masud <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lifion/lifion-kinesis.git"
},
"bugs": {
"url": "https://github.com/lifion/lifion-kinesis/issues"
},
"homepage": "https://github.com/lifion/lifion-kinesis#readme",
"main": "lib/index.js",
"engines": {
"node": ">=10.0.0 <16.10.0 || >16.13.0 <17.0.0 || >=17.0.1"
},
"scripts": {
"build-docs": "jsdoc2md -t ./templates/README.hbs ./lib/*.js > ./README.md && git add ./README.md",
"build-docs-watch": "npm-watch build-docs",
"eslint": "eslint . --ext .js,.json --ignore-pattern='!.*.*'",
"format": "prettier --write '**/*.{md,js,json}' '!coverage/**/*.{js,json}'",
"prepare": "husky install",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest -c ./.jest.json",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"async-retry": "^1.3.3",
"aws-sdk": "^2.1354.0",
"aws4": "^1.11.0",
"fast-deep-equal": "^3.1.3",
"got": "^11.8.5",
"is-retry-allowed": "^2.2.0",
"lifion-aws-event-stream": "^1.0.7",
"lru-cache": "^6.0.0",
"lzutf8": "^0.6.1",
"project-name": "^1.0.0",
"protobufjs": "^7.2.4",
"short-uuid": "^4.2.0"
},
"devDependencies": {
"auto-changelog": "^2.4.0",
"chalk": "^4.1.2",
"chance": "^1.1.8",
"check-engines": "^1.5.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-lifion": "^2.2.2",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jsdoc-to-markdown": "^7.1.1",
"lint-staged": "^12.3.5",
"npm-watch": "^0.11.0",
"pinst": "^2.1.6",
"prettier": "^2.5.1",
"semver": "^7.3.5"
},
"watch": {
"build-docs": {
"patterns": [
"lib"
]
}
},
"@lifion/core-commons": {
"template": "public",
"updated": "2019-11-11T23:13:26.785Z",
"version": "2.3.4"
}
}