-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "url-from",
"version": "1.0.0",
"description": "Type-safe URL generator with RFC3986 encoding support",
"keywords": [
"url",
"query",
"querystring",
"rfc3986",
"typescript",
"typesafe",
"searchparams",
"encode"
],
"main": "./lib/index.js",
"module": "./module/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib",
"module",
"!**/__tests__"
],
"scripts": {
"build": "yarn clean && yarn build:lib && yarn build:module",
"build:lib": "tsc -p ./tsconfig.json",
"build:module": "tsc -p ./tsconfig.module.json",
"clean": "del-cli lib module",
"format": "yarn format:write",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\"",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md,html}\"",
"test": "jest",
"versionup:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major",
"versionup:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor",
"versionup:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misuken-now/url-from.git"
},
"author": "misuken",
"license": "MIT",
"bugs": {
"url": "https://github.com/misuken-now/url-from/issues"
},
"homepage": "https://github.com/misuken-now/url-from#readme",
"devDependencies": {
"@power-doctest/markdown": "^5.3.2",
"@power-doctest/tester": "^5.3.2",
"@types/jest": "^29.5.14",
"del-cli": "^6.0.0",
"generate-changelog": "^1.8.0",
"globby": "^11.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"typescript": ">=4.7.2"
},
"packageManager": "yarn@3.5.0"
}