-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 897 Bytes
/
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
{
"name": "touchbar-registry",
"main": "./lib/index",
"version": "0.3.2",
"description": "A container for indicators on the Apple Touch bar",
"keywords": [],
"repository": "https://github.com/haklop/touchbar-registry.git",
"license": "MIT",
"engines": {
"atom": ">=1.19.0 <2.0.0"
},
"dependencies": {
"uuid": "^3.1.0"
},
"devDependencies": {
"eslint": "^3.2.2",
"eslint-config-xo-space": "^0.15.0"
},
"providedServices": {
"touchbar-registry": {
"description": "A container for indicators on the Apple Touch bar",
"versions": {
"0.2.0": "provideTouchBar",
"0.1.0": "provideTouchBar"
}
}
},
"eslintConfig": {
"extends": "xo-space/esnext",
"env": {
"mocha": true
},
"rules": {
"no-console": "error",
"camelcase": "warn"
},
"globals": {
"atom": true
}
}
}