-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
61
62
63
64
65
66
{
"name": "@jakesidsmith/tsurl",
"version": "3.0.0",
"description": "Type safe URL construction and deconstruction",
"main": "dist/index.js",
"scripts": {
"dist": "rm -rf dist && tsc --project tsconfig.dist.json",
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx,json,md}'",
"prettier-check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md}'",
"lint-js": "eslint '**/*.{ts,tsx,js,jsx}'",
"typecheck": "tsc --project tsconfig.json --noEmit && tsassert",
"lint": "npm run prettier-check && npm run typecheck && npm run lint-js",
"tests": "jest",
"test": "npm run lint && npm run tests -- --coverage --runInBand && npm run dist",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakesidsmith/tsurl.git"
},
"keywords": [
"type",
"safe",
"typescript",
"url",
"path",
"construct",
"deconstruct",
"encode",
"decode",
"query",
"params"
],
"author": "Jake 'Sid' Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakesidsmith/tsurl/issues"
},
"homepage": "https://github.com/jakesidsmith/tsurl#readme",
"dependencies": {
"@types/decode-uri-component": "^0.2.0",
"@types/encodeurl": "^1.0.0",
"@types/url-parse": "^1.4.3",
"decode-uri-component": "^0.2.0",
"encodeurl": "^1.0.2",
"path-to-regexp": "^6.1.0",
"query-string": "^6.11.1",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@jakesidsmith/tsassert": "^0.3.2",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typescript": ">=3.7"
}
}