-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "url-exists-deep",
"version": "2.1.4",
"description": "A deeper determination if an URL exists.",
"main": "./dist/index.js",
"types": "types/index.d.ts",
"keywords": [
"url",
"exists"
],
"files": [
"dist/",
"types/index.d.ts"
],
"author": "Stephan Georg <[email protected]>",
"license": "MIT",
"repository": "github:StephanGeorg/url-exists-deep",
"bugs": {
"url": "https://github.com/StephanGeorg/url-exists-deep/issues"
},
"homepage": "https://github.com/StephanGeorg/url-exists-deep#readme",
"scripts": {
"test": "npm run types && mocha --require @babel/register",
"types": "tsc -p types/tsconfig.json",
"build": "babel src --presets @babel/preset-env --plugins @babel/plugin-transform-runtime --out-dir dist",
"prepublish": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"got": "^11.8.5"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-stage-2": "^7.8.3",
"@babel/register": "^7.18.9",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"typescript": "^4.8.2"
}
}