-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1020 Bytes
/
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
{
"name": "aws-sdk-light",
"version": "1.3.1",
"description": "A lightweight version of the AWS SDK that has minimal external dependencies and runs on systems with limited resources",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --coverage --watch --verbose",
"lint": "lint-staged"
},
"repository": {
"type": "git",
"url": "[email protected]:karopolopoulos/aws-sdk-light.git"
},
"keywords": [
"apigee",
"aws",
"sdk",
"lambda"
],
"author": "Evan Karopoulos <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5"
},
"dependencies": {
"crypto-js": "^3.3.0",
"xml2js": "^0.4.23"
}
}