-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "alangreene",
"version": "3.0.1",
"description": "Alan Greene's business card",
"type": "module",
"main": "bin/card.js",
"exports": "bin/card.js",
"bin": {
"alangreene": "bin/card.js"
},
"scripts": {
"build": "node build.js",
"dev": "npm run build && node bin/card.js",
"prepublish": "npm run build",
"start": "nodemon --exec npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlanGreene/npx-alangreene.git"
},
"keywords": [
"business card",
"npm card",
"npx card",
"identity",
"profile",
"card"
],
"author": "alangreene <npm@alangreene.net>",
"license": "MIT",
"files": [
"bin/card.js",
"bin/output"
],
"bugs": {
"url": "https://github.com/AlanGreene/npx-alangreene/issues"
},
"homepage": "https://github.com/AlanGreene/npx-alangreene#readme",
"devDependencies": {
"boxen": "7.0.2",
"chalk": "5.2.0",
"left-pad": "^1.3.0",
"nodemon": "2.0.22"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
}
}