forked from jgilbert01/aws-lambda-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.45 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": "aws-lambda-stream",
"version": "0.18.0",
"description": "Create stream processors with AWS Lambda functions.",
"keywords": [
"aws",
"lambda",
"kinesis",
"dynamodb",
"serverless",
"event",
"highland",
"stream"
],
"author": "John Gilbert",
"license": "MIT",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && npm run compile",
"compile": "babel src --out-dir lib",
"clean": "rm -rf .nyc_output/ lib/ coverage/",
"lint": "npm run lint:js",
"lint:js": "eslint --fix --format=node_modules/eslint-formatter-pretty .",
"lint:staged": "lint-staged",
"pretest": "npm run clean && npm run lint",
"test": "better-npm-run test",
"prepublishOnly": "npm run build"
},
"betterScripts": {
"test": {
"command": "nyc mocha --recursive \"./test/unit/**/*.test.js\"",
"env": {
"AWS_REGION": "us-west-2",
"KMS_REGIONS": "us-west-2",
"NODE_ENV": "test"
}
}
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "https://github.com/jgilbert01/aws-lambda-stream.git"
},
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@babel/plugin-transform-runtime": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"@babel/register": "^7.10.0",
"aws-sdk": "^2.578.0",
"aws-sdk-mock": "^4.5.0",
"babel-eslint": "^10.0.0",
"babel-plugin-istanbul": "^5.2.0",
"better-npm-run": "^0.1.1",
"chai": "^4.2.0",
"eslint": "^6.7.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-import": "^2.18.2",
"fetch-mock": "^9.11.0",
"lint-staged": "^9.4.3",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"@babel/runtime": "^7.10.0",
"aws-kms-ee": "^0.7.0",
"bluebird": "^3.7.1",
"debug": "^4.1.1",
"highland": "^2.13.5",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0",
"node-fetch": "^2.6.1",
"uuid": "^3.3.3"
},
"peerDependencies": {
"@babel/runtime": "^7.10.0",
"aws-kms-ee": "^0.7.0",
"bluebird": "^3.7.1",
"debug": "^4.1.1",
"highland": "^2.13.5",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0",
"node-fetch": "^2.6.1",
"uuid": "^3.3.3"
},
"dependencies": {}
}