forked from chabou/hyper-always-on-top
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
50
51
{
"name": "hyper-always-on-top",
"version": "1.0.3",
"description": "Extension for Hyper.app to optionally keep application windows always on top",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chabou/hyper-always-on-top.git"
},
"keywords": [
"hyper",
"hyper.app",
"hyperterm",
"shell"
],
"author": "CHaBou",
"license": "MIT",
"bugs": {
"url": "https://github.com/chabou/hyper-always-on-top/issues"
},
"homepage": "https://github.com/chabou/hyper-always-on-top#readme",
"xo": {
"extends": "xo-react",
"esnext": true,
"space": true,
"env": [
"browser",
"node"
],
"rules": {
"new-cap": 0,
"no-warning-comments": 0,
"complexity": 0,
"import/prefer-default-export": 0,
"react/prop-types": 0,
"react/jsx-no-bind": 0
},
"ignores": [
"build/**",
"app/dist/**",
"app/static/**",
"assets/**"
]
},
"dependencies": {
"lodash.merge": "^4.6.0"
}
}