-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.84 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
{
"name": "tag-remover-for-amazon",
"version": "1.2.0",
"private": true,
"description": "WebExtension for Chrome, Firefox, Edge and Opera to remove the Amazon affiliate tracking ID (tag) from amazon links",
"scripts": {
"prepare": "husky",
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "tsx scripts/postbuild.ts",
"eslint": "eslint src/js",
"stylelint": "stylelint 'src/**/*.html'",
"lint": "npm run eslint && npm run stylelint",
"lint:swift": "swiftlint",
"prerelease": "npm run test",
"release": "commit-and-tag-version -s -a",
"postrelease": "npm run build",
"pretest": "npm run lint",
"test": "echo soon!"
},
"repository": "timbru31/amazon-tag-remover",
"author": "Tim Brust <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timbru31/amazon-tag-remover/issues"
},
"homepage": "https://github.com/timbru31/amazon-tag-remover#readme",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/chrome": "^0.0.299",
"@types/eslint__js": "^8.42.3",
"@types/firefox-webext-browser": "^120.0.4",
"@types/fs-extra": "^11.0.4",
"addons-linter": "^7.8.0",
"commit-and-tag-version": "^12.5.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss-html": "^1.8.0",
"prettier": "^3.4.2",
"stylelint": "^16.14.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^15.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "tsx scripts/patch-versions.ts && prettier --write src/manifest.json && git add src/manifest.json",
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}