-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "twitter-link-deobfuscator",
"version": "1.8.0",
"description": "Reveals the original destinations of the links and of the Twitter Cards from tweets and replies as well as from Direct Messages, but also the \"Website\" link and others, which are usually concealed using shortened URLs.",
"scripts": {
"lint": "npx web-ext lint",
"load": "npx web-ext run",
"build": "npx web-ext build",
"cmt": "npx cz",
"prepare": "npx husky install",
"release": "npx standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theAlinP/twitter-link-deobfuscator.git"
},
"keywords": [
"WebExtension",
"Twitter",
"link",
"cleaning"
],
"author": "Alin Pasol",
"license": "MIT",
"bugs": {
"url": "https://github.com/theAlinP/twitter-link-deobfuscator/issues"
},
"homepage": "https://github.com/theAlinP/twitter-link-deobfuscator#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"standard-version": "^9.5.0",
"web-ext": "^8.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}