This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.57 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.57 KB
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
{
"name": "alfred-hugo",
"version": "3.0.1",
"description": "Alfred workflow bindings for NodeJS",
"author": "Maarten de Boer <maarten@cloudstek.nl> (https://cloudstek.nl)",
"contributors": [
"Marjolein Regterschot <info@marjoleinregterschot.nl>"
],
"repository": "Cloudstek/alfred-hugo",
"bugs": "https://github.com/Cloudstek/alfred-hugo/issues",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"bin": {
"hugo-link": "./dist/bin/link.js",
"hugo-unlink": "./dist/bin/unlink.js"
},
"keywords": [
"alfred",
"workflow",
"macos",
"mac",
"osx",
"util",
"utility",
"helper"
],
"license": "BSD-2-Clause",
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/mockdate": "^2.0.0",
"@types/node": "^13.7.0",
"@types/semver": "^7.1.0",
"@types/sinon": "^7.0.12",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"ava": "^3.2.0",
"bplist-creator": "^0.0.8",
"coveralls": "^3.0.4",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-plugin-prefer-arrow": "^1.1.7",
"mockdate": "^2.0.2",
"nock": "^12.0.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@cloudstek/cache": "^1.0.5",
"@types/node-notifier": "^6.0.0",
"axios": "^0.19.2",
"bplist-parser": "^0.2.0",
"del": "^5.0.0",
"fs-extra": "^9.0.0",
"fuse.js": "^3.6.1",
"glob": "^7.1.4",
"moment": "^2.17.1",
"node-notifier": "^6.0.0",
"plist": "^3.0.1",
"read-pkg-up": "^7.0.1",
"semver": "^7.1.2",
"strict-event-emitter-types": "^2.0.0",
"untildify": "^4.0.0"
},
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "npm-run-all -p clean:*",
"clean:dist": "del-cli dist",
"clean:test": "del-cli build",
"clean:coverage": "del-cli coverage .nyc_output",
"build": "npm-run-all -p clean:test clean:coverage && tsc",
"watch": "npm-run-all -p clean:test clean:coverage && tsc --watch",
"build:dist": "npm-run-all -s clean:dist && tsc -p tsconfig.dist.json",
"test": "npm-run-all -p clean:coverage && tsc && nyc ava",
"test:ci": "npm-run-all -p clean:* && tsc && nyc -s ava && nyc report --reporter=text-lcov | coveralls",
"lint": "npm-run-all -l -p lint:*",
"lint:src": "eslint src/**/*.ts",
"lint:test": "eslint test/**/*.ts"
},
"ava": {
"files": [
"build/test/**/*",
"!build/test/helpers/**/*"
]
}
}