-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
48 lines (48 loc) · 909 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
{
"name": "alfred-npms",
"version": "3.0.0",
"description": "Alfred workflow to search for npm packages with npms.io",
"license": "MIT",
"repository": "sindresorhus/alfred-npms",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=14.13.1"
},
"scripts": {
"test": "xo && ava",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"index.js",
"source",
"icon.png",
"info.plist"
],
"keywords": [
"npm",
"npms",
"npmjs",
"alfred",
"alfred-workflow",
"workflow",
"alfy"
],
"dependencies": {
"alfy": "^0.12.2",
"date-format": "^3.0.0"
},
"devDependencies": {
"alfy-test": "^0.4.2",
"ava": "^4.0.1",
"semver-regex": "^4.0.2",
"xo": "^0.47.0"
}
}