-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 967 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
40
41
42
43
44
45
46
47
{
"name": "node-temp-mail",
"version": "2.0.2",
"description": "Node wrapper for temporary email addresses.",
"main": "index.js",
"scripts": {
"format": "prettier --write . && eslint --fix .",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"keywords": [
"tempmail",
"temporary",
"mail",
"email",
"temp",
"email",
"temporary",
"email",
"node",
"tempemail"
],
"author": "Jonathan Becker",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"husky": "^9.0.5",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3"
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint . --fix --ignore-pattern \"*.json\"",
"prettier --write ."
],
"**/*": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}