-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "copy-jwt",
"version": "1.0.0",
"description": "chrome extension which searches a jwt token in local storage and copies it to the clipboard",
"scripts": {
"dist": "./dist.sh",
"build": "tsc --outDir dist",
"test": "jest --watch",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bianucci/copy-jwt.git"
},
"keywords": [
"chrome",
"extension",
"jwt",
"localstorage",
"copy",
"clipboard"
],
"author": "Claudio Bianucci",
"license": "MIT",
"bugs": {
"url": "https://github.com/bianucci/copy-jwt/issues"
},
"homepage": "https://github.com/bianucci/copy-jwt#readme",
"devDependencies": {
"@types/chrome": "^0.0.193",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}