-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "serverless-plugin-offline-kinesis-stream",
"version": "1.0.2",
"description": "Serverless framework offline plugin to support aws kinesis stream",
"author": "Emmanuel Kong <[email protected]>",
"homepage": "https://github.com/orchestrated-io/serverless-plugin-offline-kinesis-stream#readme",
"keywords": [
"node"
],
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"coverage": "jest --colors --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"jest": "jest --colors --verbose",
"lint": "eslint src/**/*.js test/**/*.js",
"start": "node src/index.js",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "https://github.com/orchestrated-io/serverless-plugin-offline-kinesis-stream.git"
},
"bugs": {
"url": "https://github.com/orchestrated-io/serverless-plugin-offline-kinesis-stream/issues"
},
"dependencies": {
"aws-sdk": "^2.1226.0",
"kinesis-readable": "1.2.0",
"lodash": "^4.17.21",
"path": "0.12.7"
},
"devDependencies": {
"@types/jest": "29.1.1",
"coveralls": "3.1.1",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.1.1",
"prettier": "2.7.1"
},
"license": "MIT"
}