-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
60 lines (60 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "urlcat",
"version": "3.1.0",
"description": "A library for concatenating URL's.",
"repository": {
"type": "git",
"url": "https://github.com/balazsbotond/urlcat.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"clean": "shx rm -rf dist",
"prebuild": "npm run clean",
"build": "tsup",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"coverage": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm test && npm run build",
"docs": "docsify serve docs --open"
},
"keywords": [
"url",
"uri",
"build",
"builder",
"concat",
"concatenate"
],
"author": "Botond Balazs",
"license": "MIT",
"dependencies": {
"qs": "^6.9.4"
},
"devDependencies": {
"@types/jest": "29.4.0",
"@types/qs": "6.9.7",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"coveralls": "3.1.1",
"docsify-cli": "^4.4.4",
"eslint": "8.34.0",
"jest": "29.4.3",
"shx": "0.3.4",
"ts-jest": "29.0.5",
"tslint": "6.1.3",
"tsup": "^6.5.0",
"typescript": "4.9.5"
}
}