-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 881 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
{
"name": "for-loops",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true,
"scripts": {
"test": "eslint .",
"prepare": "husky install"
},
"keywords": [],
"author": "Luciano Mammino",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-syntax-top-level-await": "^7.12.13",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.14.0",
"axios": "^0.21.1",
"glob": "^7.1.6"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}