forked from victal/quickcommands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1014 Bytes
/
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
{
"name": "quickcommands",
"version": "1.4.0",
"description": "A Firefox webextension that tries to mimic Vivaldi's Quick commands window. Open with Alt-Shift-R",
"main": "",
"scripts": {
"dev": "web-ext run -f ${FIREFOX:-firefox}",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victal/quickcommands.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/victal/quickcommands/issues"
},
"homepage": "https://github.com/victal/quickcommands#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-watch": "^6.0.1",
"husky": "^4.3.0",
"web-ext": "^5.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}