-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
94 lines (94 loc) · 2.86 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
{
"name": "leo-sdk",
"version": "7.1.8",
"description": "Load data onto the LEO Platform",
"homepage": "https://leoplatform.io",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --recursive -w",
"utest": "mocha \"**/*.utest.js\"",
"coverage-all": "cross-env NODE_ENV=utest node ./node_modules/nyc/bin/nyc.js --all node ./node_modules/mocha/bin/mocha --timeout 5000 \"./{,!(node_modules)/**/}*.utest.js\"",
"coverage": "cross-env NODE_ENV=utest node ./node_modules/nyc/bin/nyc.js node ./node_modules/mocha/bin/mocha --timeout 5000 \"./{,!(node_modules)/**/}*.utest.js\"",
"compile": "tsc && npm run compile-worker-thread-code",
"compile-worker-thread-code": "npx webpack build --config ./webpack.config.js && node ./set-worker-thread-content.js",
"watch": "tsc -w",
"publish-beta": "npm publish --tag beta",
"build-docs": "cd docs && ts-node build-docs.ts",
"lint": "eslint ."
},
"overrides": {
"typedoc": {
"typescript": "$typescript"
}
},
"dependencies": {
"async": "2.6.4",
"backoff": "2.5.0",
"big-integer": "^1.6.51",
"event-stream": "4.0.1",
"extend": "3.0.2",
"fast-csv": "4.3.6",
"fast-json": "^3.0.0",
"flush-write-stream": "2.0.0",
"ini": "2.0.0",
"leo-config": "1.1.0",
"leo-logger": "1.0.1",
"lodash": "4.17.21",
"lodash.merge": "^4.6.2",
"moment": "2.29.4",
"pump": "3.0.0",
"pumpify": "1.5.1",
"readable-stream": "3.4.0",
"split2": "3.1.1",
"through2": "3.0.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.93",
"@types/chai": "^4.3.0",
"@types/event-stream": "^4.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^20.10.4",
"@types/pumpify": "^1.4.1",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"glob": "^10.3.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"react": "^18.1.0",
"replace-in-file": "^6.3.2",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typedoc-plugin-no-inherit": "^1.3.1",
"typedoc-plugin-replace-text": "^1.0.0",
"typescript": "^5.1.6",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"@aws-sdk/client-cloudformation": "^3.427.0",
"@aws-sdk/client-dynamodb": "^3.427.0",
"@aws-sdk/client-lambda": "^3.427.0",
"@aws-sdk/client-firehose": "^3.427.0",
"@aws-sdk/client-kinesis": "^3.427.0",
"@aws-sdk/client-s3": "^3.427.0",
"@aws-sdk/client-secrets-manager": "^3.427.0",
"@aws-sdk/client-sts": "^3.427.0",
"@aws-sdk/credential-providers": "^3.427.0",
"@aws-sdk/lib-dynamodb": "^3.515.0",
"@aws-sdk/lib-storage": "^3.427.0"
},
"author": "LEO Enterprises <[email protected]> (http://leoplatform.io)",
"repository": "LeoPlatform/Nodejs",
"license": "MIT"
}