-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1 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
{
"name": "responseasy",
"version": "0.0.1",
"description": ":ok_hand: An easy, simple and elegant http response builder for aws lambda functions",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx jest --verbose",
"lint": "npx eslint .",
"coverage": "npm test"
},
"author": "Luiz Freneda <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lfreneda/responseasy/issues"
},
"homepage": "https://github.com/lfreneda/responseasy#readme",
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"husky": "^4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"jest": {
"verbose": true,
"collectCoverage": true
}
}