-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "hyperterm-summon",
"version": "2.0.11",
"description": "Summon your Hyperterm windows with a system-wide hotkey",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Soutar/hyperterm-summon.git"
},
"scripts": {
"format": "prettier '**/*.{css,md,js,json}' --write",
"lint": "eslint '{index,{__mocks__,fixtures,modules}/**/*}.js'",
"precommit": "lint-staged",
"test": "jest"
},
"keywords": [
"hyper",
"hyper.app",
"hyper-plugin",
"plugin",
"hotkey",
"shortcut",
"global",
"system",
"focus",
"summon"
],
"author": "John Soutar <john@soutar.me>",
"license": "ISC",
"dependencies": {
"hyperterm-register-shortcut": "^1.3.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.7.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"release": "^6.3.1"
}
}