-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "@rabblerouser/local-kinesis-lambda-runner",
"version": "0.2.5",
"description": "A script for local development of lambda functions that listen to kinesis streams",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"lint": "eslint src",
"test": "NODE_ENV=test mocha -r src/__tests__/testGlobals.js 'src/**/__tests__/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabblerouser/local-kinesis-lambda-runner.git"
},
"keywords": [
"rabblerouser",
"kinesis",
"lambda",
"development"
],
"author": "The Rabble Rouser Team",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/rabblerouser/local-kinesis-lambda-runner/issues"
},
"homepage": "https://github.com/rabblerouser/local-kinesis-lambda-runner#readme",
"dependencies": {
"aws-sdk": "^2.22.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"mocha": "true"
},
"globals": {
"sinon": true,
"expect": true
}
}
}