forked from jayk/minimap-autohide
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.11 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": "minimap-autohider",
"main": "lib/minimap-autohider.js",
"version": "1.7.0",
"description": "Automatically hide the minimap when you aren't using it.",
"repository": "https://github.com/ansballard/minimap-autohider",
"author": {
"name": "Aaron Ballard (ansballard)",
"email": "[email protected]"
},
"scripts": {
"prettier": "prettier --write \"{lib,spec,styles}/*.{js,less}\"",
"gitadd": "git add lib styles spec"
},
"precommit": [
"prettier",
"gitadd"
],
"activationHooks": [
"core:loaded-shell-environment"
],
"package-deps": [
{
"name": "minimap"
}
],
"contributors": [
{
"name": "Jay Kuri (jayk)"
},
{
"name": "Aaron Ballard (ansballard)",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"atom": ">=1.13.0"
},
"consumedServices": {
"minimap": {
"versions": {
"1.0.0": "consumeMinimapServiceV1"
}
}
},
"devDependencies": {
"pre-commit": "^1.2.2",
"prettier": "^2.2.1"
},
"dependencies": {
"atom-package-deps": "^7.0.2"
}
}