-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.23 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
{
"name": "serverless-plugin-offline-kinesis-events",
"version": "1.1.1",
"description": "Plugin that integrates Kinesis events with offline Lambdas",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"engines": {
"node": ">=7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DopplerLabs/serverless-plugin-offline-kinesis-events.git"
},
"keywords": [
"aws",
"aws lambda",
"amazon",
"amazon web services",
"kinesis",
"kinesalite",
"serverless",
"dopplerlabs.com"
],
"author": "Matt Sills",
"contributors": [
{
"name": "Jacob Meacham",
"url": "http://jemonjam.com/"
}
],
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/DopplerLabs/serverless-plugin-offline-kinesis-events/issues"
},
"homepage": "https://github.com/DopplerLabs/serverless-plugin-offline-kinesis-events",
"scripts": {
"lint": "eslint .",
"eslint": "eslint",
"test": "nyc ava",
"test:watch": "ava --watch",
"build:node": "cross-env BABEL_ENV=production babel src --out-dir lib",
"build": "npm run lint && npm run test && npm run build:node",
"ci:coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"aws-sdk": "2.7.21",
"babel-runtime": "6.23.0",
"bluebird": "3.4.7",
"lodash": "4.17.4",
"winston": "2.3.1"
},
"devDependencies": {
"ava": "0.21.0",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-register": "6.24.1",
"coveralls": "2.13.1",
"cross-env": "5.0.1",
"eslint": "4.3.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-ava": "4.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"nyc": "11.0.3",
"rimraf": "2.6.1",
"serverless": "1.18.0"
},
"peerDependencies": {
"serverless": ">=1.16.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}