-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
54 lines (54 loc) · 1.04 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
52
53
54
{
"name": "hyperpwn",
"version": "0.5.0",
"description": "A hyper plugin to provide GDB with a flexible GUI",
"repository": "bet4it/hyperpwn",
"author": "Bet4 <[email protected]>",
"license": "MIT",
"main": "index.js",
"files": [
"cfgs"
],
"bin": {},
"keywords": [
"hyper"
],
"scripts": {
"test": "xo"
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"rules": {
"max-depth": "off",
"complexity": "off",
"dot-notation": "off",
"no-control-regex": "off",
"padding-line-between-statements": [
"error",
{
"blankLine": "any",
"prev": "multiline-block-like",
"next": "*"
}
]
},
"env": [
"node",
"browser"
]
},
"devDependencies": {
"xo": "^0.39.1"
},
"dependencies": {
"ansi-escapes": "^4.3.2",
"cli-truncate": "^2.1.0",
"expandtabs": "^1.0.0",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"lodash.merge": "^4.6.2",
"strip-ansi": "^6.0.0"
}
}