-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 830 Bytes
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
{
"name": "touchbar-git",
"main": "./lib/index",
"version": "0.1.4",
"description": "Display Git information on the Touch Bar",
"keywords": [],
"repository": "https://github.com/haklop/touchbar-git.git",
"license": "MIT",
"engines": {
"atom": ">=1.19.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "^4.6.0"
},
"devDependencies": {
"eslint": "^3.2.2",
"eslint-config-xo-space": "^0.15.0"
},
"consumedServices": {
"touchbar-registry": {
"versions": {
"0.2.0": "consumeTouchBar"
}
}
},
"package-deps": [
"touchbar-registry"
],
"eslintConfig": {
"extends": "xo-space/esnext",
"env": {
"mocha": true
},
"rules": {
"no-console": "error",
"camelcase": "warn"
},
"globals": {
"atom": true
}
}
}