forked from daltonmenezes/hyper-init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
55
56
57
58
{
"name": "hyper-init",
"version": "1.5.1",
"description": "The ultimate and most complete extension to initialize commands before and after Hyper terminal starts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daltonmenezes/hyper-init.git"
},
"keywords": [
"hyper",
"hyper.app",
"hyperterm",
"hyper-plugin",
"hyperterm-plugin",
"hyper-extension",
"plugin",
"extension",
"run",
"startup",
"init",
"initialization",
"initializer",
"launcher",
"terminal",
"command",
"start"
],
"author": {
"name": "Dalton Menezes",
"email": "[email protected]",
"url": "https://daltonmenezes.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/daltonmenezes/hyper-init/issues"
},
"homepage": "https://github.com/daltonmenezes/hyper-init#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint . --cache"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}