-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "leo-bus",
"version": "3.3.1",
"description": "Improve Kinesis burstability, durability, and replay",
"main": "index.js",
"scripts": {
"test:libs": "mocha --recursive 'test/**/*.test.js'",
"test:libs:watch": "mocha --recursive -w 'test/**/*.test.js'",
"test:bots": "mocha --recursive 'bots/**/*.test.js'",
"test:bots:watch": "mocha --recursive -w 'bots/**/*.test.js'",
"test:int": "mocha 'test/**/*.integration.js'",
"setup": "setup",
"build": "leo-cli publish -s --force all --build",
"package": "leo-cli publish -s --force all",
"deploy:dev": "leo-cli publish -s -d dev --force all",
"deploy:test": "leo-cli publish -s -d test --force all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeoPlatform/bus.git"
},
"keywords": [
"Kinesis",
"Kafka"
],
"author": "LeoPlatform",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LeoPlatform/bus/issues"
},
"homepage": "https://github.com/LeoPlatform/bus#readme",
"dependencies": {
"deep-diff": "1.0.2",
"leo-cron": "^2.0.2-beta",
"leo-logger": "1.0.1",
"leo-sdk": "^6.0.17-rc",
"moment": "2.24.0"
},
"devDependencies": {
"aws-sdk": "^2.466.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"extend": "^3.0.2",
"leo-aws": "1.4.4",
"mocha": "^6.1.4",
"proxyquire": "^2.1.1",
"sinon": "^7.3.2",
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"is-semver": "1.0.11"
},
"config": {
"leo": {
"type": "microservice",
"regions": [
"us-west-2",
"us-east-1"
],
"runtime": "nodejs16.x",
"3rdParty": true,
"excludeProfiles": true
}
}
}