-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "soap-server-lambda",
"version": "1.0.0",
"description": "This is AWS lambda integration for a simple SOAP server.",
"main": "src/SoapServer.js",
"directories": {
"example": "example"
},
"scripts": {
"lint": "eslint --fix",
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | codacy-coverage --username RishikeshDarandale --projectName soap-server-lambda"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RishikeshDarandale/soap-server-lambda.git"
},
"keywords": [
"aws",
"lambda",
"soap",
"server"
],
"author": "Rishikesh Darandale",
"license": "MIT",
"bugs": {
"url": "https://github.com/RishikeshDarandale/soap-server-lambda/issues"
},
"homepage": "https://github.com/RishikeshDarandale/soap-server-lambda#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^12.0.1",
"ava": "^3.3.0",
"codacy-coverage": "^3.4.0",
"copy-webpack-plugin": "^6.0.0",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"serverless": "^2.3.0",
"serverless-offline": "^6.0.0",
"serverless-webpack": "^5.3.1",
"webpack": "^5.1.3",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"fast-xml-parser": "^3.16.0",
"lambda-log": "^2.3.1"
}
}