-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "url-exists-nodejs",
"version": "0.2.4",
"description": "A node.js library to check if a url exists (with zero dependencies)",
"type": "module",
"main": "index.js",
"scripts": {
"test": "tsd && ava",
"lint": "eslint --fix index.js"
},
"repository": {
"url": "https://github.com/nwaughachukwuma/url-exists-nodejs",
"directory": "https://github.com/nwaughachukwuma"
},
"keywords": [
"isUrlExist",
"url-exists",
"is-url",
"valid-url"
],
"exports": "./index.js",
"files": [
"index.js",
"index.d.ts"
],
"sideEffects": false,
"author": {
"name": "Chukwuma Nwaugha",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"ava": "^4.3.1",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"tsd": "^0.22.0"
},
"dependencies": {},
"lint-staged": {
"./**/*.{cjs,js,ts}": [
"eslint --fix",
"prettier --write",
"yarn test"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"ava": {
"files": [
"test.js"
]
}
}