-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "alfred-focus-on-work",
"version": "0.2.2",
"description": "Alfred workflow which forces to focus on work and tracks a time for you",
"license": "MIT",
"repository": "igrybkov/alfred-focus-on-work",
"author": {
"name": "Illia Grybkov",
"email": "[email protected]",
"url": "https://grybkov.com"
},
"engines": {
"node": ">=8"
},
"main": "lib/alfred-cli.js",
"scripts": {
"app": "node lib/alfred-cli.js",
"app-dev": "ts-node lib/alfred-cli.js",
"test": "npm-run-all lint",
"lint": "tslint -c tslint.json --project tsconfig.json 'src/**/*.ts' 'tools/**/*.js'",
"fix-style": "npm run lint -- --fix",
"build": "rm -rf lib && tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build && pkg-ok",
"postinstall": "node tools/link.js",
"preuninstall": "node tools/unlink.js",
"release": "release-it"
},
"files": [
"lib",
"tools",
"icon.png",
"info.plist",
"images",
"**/*.d.ts",
"dist",
"!**/*.ts",
"!**/test.js",
"!**/*.test.js",
"!**/test/*.js",
"!**/.DS_Store"
],
"keywords": [
"alfred",
"workflow",
"alfy"
],
"dependencies": {
"alfred-notifier": "^0.2.3",
"alfy": "^0.6.0",
"applescript": "^1.0.0",
"commander": "^2.19.0",
"conf": "^2.2.0",
"find": "^0.2.9",
"fuse.js": "^3.3.0",
"taskpaper": "^1.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/conf": "^2.1.0",
"@types/uuid": "^3.4.4",
"husky": "^1.3.1",
"install": "^0.12.2",
"npm": "^6.6.0-next.1",
"npm-run-all": "^4.1.5",
"pkg-ok": "^2.3.1",
"prettier": "^1.16.1",
"prettier-tslint": "^0.4.2",
"release-it": "^9.6.4",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"release-it": {
"scripts": {
"afterBump": "/usr/libexec/PlistBuddy -c 'Set version ${version}' info.plist; make alfredworkflow"
},
"git": {
"tagName": "v${version}",
"commitMessage": "Release v${version}",
"tagAnnotation": "Release v${version}"
},
"github": {
"release": true,
"releaseName": "Release v${version}",
"assets": [
"build/*.alfredworkflow",
"build/*.zip"
]
}
}
}