forked from balazsbotond/urlcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "urlcat",
"version": "2.0.4",
"description": "A library for concatenating URL's.",
"repository": {
"type": "git",
"url": "https://github.com/balazsbotond/urlcat.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "shx rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc -p .",
"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": "26.0.19",
"@types/qs": "6.9.5",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"coveralls": "3.1.0",
"eslint": "7.15.0",
"jest": "26.6.3",
"shx": "0.3.3",
"ts-jest": "26.4.4",
"tslint": "6.1.3",
"typescript": "4.1.2",
"docsify-cli": "4.4.2"
}
}