-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "gopassbridge",
"version": "2.1.0",
"description": "Gopass Bridge allows searching and inserting login credentials from the gopass password manager",
"main": "web-extension/gopassbridge.js",
"scripts": {
"test": "npm run test:lint && npm run test:jest",
"test:lint": "npm run lint",
"test:jest": "jest",
"lint": "npm run lint:eslint && npm run lint:webext && npm run lint:prettier",
"lint:eslint": "eslint web-extension manifests tests",
"lint:webext": "web-ext -s firefox-release lint",
"lint:prettier": "prettier --end-of-line auto --check \"**/*\"",
"format": "prettier --write \"**/*\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gopasspw/gopassbridge.git"
},
"keywords": [
"gopass",
"passwordmanager",
"web-extension"
],
"author": "Martin Hoefling",
"license": "MIT",
"bugs": {
"url": "https://github.com/gopasspw/gopassbridge/issues"
},
"homepage": "https://github.com/gopasspw/gopassbridge#readme",
"dependencies": {},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-plugin-json": "^4.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-promise": "^7.2.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"jest-plugin-unhandled-promise": "^2.9.0",
"jest-webextension-mock": "^3.8.9",
"prettier": "^3.2.5",
"web-ext": "^8.3.0"
}
}