forked from meabed/build-url-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "build-url-ts",
"version": "6.1.5",
"description": "A small library that builds a URL given its components",
"keywords": [
"url",
"uri",
"builder",
"build",
"concat",
"concatenate",
"append",
"path",
"hash",
"query",
"string",
"querystring",
"parameters",
"params",
"queryparams"
],
"homepage": "https://github.com/meabed/build-url-ts#readme",
"bugs": {
"url": "https://github.com/meabed/build-url-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meabed/build-url-ts.git"
},
"license": "MIT",
"author": {
"name": "Mohamed Meabed",
"email": "[email protected]",
"url": "https://meabed.com"
},
"maintainers": [
{
"name": "Mohamed Meabed",
"email": "[email protected]",
"url": "https://meabed.com"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"build:prod": "NODE_ENV=production rollup -c rollup.config.mjs",
"lint-js": "eslint src/**/*.ts",
"prepublishOnly": "rm -rf dist/* && NODE_ENV=production rollup -c rollup.config.mjs",
"prettier": "prettier --write '**/*.{ts,tsx,css,scss}'",
"test": "jest",
"test-watch": "jest --watch"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "3.7.1",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-replace": "5.0.2",
"@rollup/plugin-typescript": "11.0.0",
"@types/jasmine": "4.3.1",
"@types/jest": "29.2.6",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"jest": "29.3.1",
"prettier": "2.8.3",
"rollup": "3.10.1",
"rollup-plugin-uglify": "6.0.4",
"ts-jest": "29.0.5",
"tslib": "2.4.1",
"typescript": "4.9.4"
}
}