This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.44 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
{
"name": "@stoelzle/docxify-alfred",
"version": "1.1.0",
"description": "Alfred workflow to convert markdown to DOCX",
"keywords": [
"alfred",
"workflow",
"alfy",
"nodejs",
"markdown-to-docx",
"markdown",
"docx",
"docxify-node"
],
"license": "MIT",
"homepage": "https://github.com/stoelzle/docxify-alfred#readme",
"author": {
"name": "Stefan Stölzle",
"email": "stoe@github.com",
"url": "https://github.com/stoe"
},
"repository": "git@github.com:stoelzle/docxify-alfred.git",
"bugs": {
"url": "https://github.com/stoelzle/docxify-alfred/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"scripts": {
"test": "eslint '**/*.js' && ava -v",
"postinstall": "script/setup && alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"icon.png",
"index.js",
"info.plist",
"license",
"readme.md"
],
"dependencies": {
"@stoelzle/docxify-node": "1.4.0",
"alfy": "^0.8.0"
},
"devDependencies": {
"alfy-test": "^0.3.0",
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.1.0",
"execa": "^1.0.0",
"prettier": "^1.16"
},
"resolutions": {
"eslint-scope": "3.7.1",
"lodash": "^4.17.5"
},
"ava": {
"files": [
"test/*.t.js"
]
}
}