-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 912 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
42
43
44
45
46
47
48
49
50
{
"name": "alfred-night-shift",
"version": "0.2.2",
"description": "Alfred 3 workflow to toggle night shift",
"license": "MIT",
"repository": "importre/alfred-night-shift",
"author": {
"name": "",
"email": "[email protected]",
"url": "importre.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"night.js",
"icon.png",
"info.plist"
],
"keywords": [
"alfred",
"workflow",
"night",
"night mode",
"night-shfit",
"night shfit",
"alfy"
],
"dependencies": {
"alfy": "^0.6.0"
},
"devDependencies": {
"alfy-test": "^0.3.0",
"ava": "^0.18.0",
"xo": "^0.17.0"
},
"xo": {
"esnext": true,
"rules": {
"babel/new-cap": "off",
"no-undef": "off",
"no-unused-vars": "off"
}
}
}