-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.31 KB
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
{
"name": "http-errors-wrapper",
"version": "2.1.1",
"description": "Handle http errors in an easy way",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "./node_modules/.bin/babel src -d lib --no-copy-ignored",
"lint": "eslint .",
"prettier": "prettier \"**/*.{js,jsx,ts,tsx}\" --write",
"lint:prettier": "echo \"Prettier is running...\" && prettier \"**/*.{js,jsx,ts,tsx}\" --write && echo \"ESlint is running...\" && eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuisFuenTech/http-errors-wrapper"
},
"bugs": "https://github.com/LuisFuenTech/http-errors-wrapper/issues",
"keywords": [
"javascript",
"nodejs",
"http",
"error",
"http-errors",
"wrapper"
],
"homepage": "https://github.com/LuisFuenTech/http-errors-wrapper#readme",
"author": "Luis Fuentes <luisfuentes.au@gmail.com> (https://github.com/LuisFuenTech)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"handlebars": "4.5.0",
"jest": "23.6.0",
"prettier": "2.4.1",
"sinon": "7.0.0"
},
"engines": {
"node": ">=10"
}
}