forked from DrKain/tidy-url
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "@protontech/tidy-url",
"version": "1.18.3",
"description": "Cleans/removes tracking or garbage parameters from URLs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "ts-node test.ts",
"build": "tsc && webpack && ts-node src/postbuild.ts",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrKain/tidy-url.git"
},
"keywords": [
"tidy",
"clean",
"sanitize",
"url",
"website",
"tracking",
"remove",
"junk"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DrKain/tidy-url/issues"
},
"homepage": "https://github.com/DrKain/tidy-url#readme",
"devDependencies": {
"@types/node": "^14.17.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"prettier": "^2.3.0",
"ts-loader": "^9.2.8",
"typescript": "^4.2.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}