-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.55 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": "sqslite",
"version": "2.1.1",
"description": "Lightweight module for integration testing AWS SQS.",
"keywords": [],
"author": "Jenny Eckstein <[email protected]>",
"maintainers": [
"Edgardo Avilés <[email protected]>",
"Jenny Eckstein <[email protected]>",
"Hanna Rzheutskaya <[email protected]>"
],
"contributors": [
"Chen Doron <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/lifion/sqslite.git"
},
"bugs": {
"url": "https://github.com/lifion/sqslite/issues"
},
"homepage": "https://lifion.github.io/sqslite",
"main": "lib/index.js",
"files": [
"lib",
"bin",
"!*.test.js"
],
"bin": "bin/cli.js",
"engines": {
"node": ">=v14"
},
"scripts": {
"build-docs": "commons",
"build-types": "commons",
"check-types": "commons",
"clean-types": "commons",
"eslint": "commons",
"prepare": "commons",
"prepublishOnly": "npm run build-types && npm run prettier",
"prettier": "commons",
"test": "commons",
"version": "commons"
},
"dependencies": {
"dedent": "^0.7.0",
"fastify": "^3.29.0",
"fastify-formbody": "^5.3.0",
"md5": "^2.3.0",
"minimist": "^1.2.6",
"superstruct": "^0.15.4",
"uuid": "^8.3.2",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@types/md5": "^2.3.2",
"@types/node": "^17.0.35",
"@types/uuid": "^8.3.4",
"aws-sdk": "^2.1140.0",
"core-commons": "1.0.0-alpha.6",
"jest-xml-matcher": "^1.2.0"
}
}