-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "easy-urls",
"description": "Easy and typesafe URL handling",
"version": "1.0.1",
"license": "MIT",
"author": "Kacper Dziub",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkacper/easy-urls.git"
},
"bugs": {
"url": "https://github.com/dkacper/easy-urls/issues"
},
"homepage": "https://github.com/dkacper/easy-urls#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.5.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.5.1",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/qs": "^6.9.7",
"path-to-regexp": "^6.2.1",
"qs": "^6.11.2"
}
}