-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 806 Bytes
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
{
"name": "nativefier-catalog",
"version": "0.2.2",
"description": "Catalog of nativefier apps",
"license": "MIT",
"repository": "mattruzzi/nativefier-catalog",
"author": {
"name": "Matthew Ruzzi",
"email": "68619790+mattruzzi@users.noreply.github.com",
"url": "https://mattruzzi.github.io"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "commonjs",
"bin": "cli.js",
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node cli.js",
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js",
"apps.json"
],
"keywords": [
"cli-app",
"cli",
"nativefier"
],
"dependencies": {
"enquirer": "^2.3.6",
"meow": "^9.0.0",
"nativefier": "^46.0.4",
"yaml": "2.0.0-10"
},
"devDependencies": {
"ava": "^3.15.0",
"xo": "^0.39.1"
}
}