-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 885 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
{
"name": "simongolms",
"version": "0.1.1",
"description": "The personal business card for Simon Golms (@simongolms)",
"keywords": [
"card",
"npm card",
"npx",
"npx card",
"business card",
"profile"
],
"homepage": "https://github.com/simongolms/npx-card.git",
"license": "MIT",
"author": {
"name": "Simon Golms",
"email": "[email protected]",
"url": "https://gol.ms"
},
"files": [
"bin/card.js",
"bin/output"
],
"main": "bin/card.js",
"bin": {
"simongolms": "./bin/card.js"
},
"repository": {
"type": "git",
"url": "https://github.com/simongolms/npx-card.git"
},
"scripts": {
"prepublish": "npm run build",
"build": "node build.js",
"dev": "npm run build && node ./bin/card.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"boxen": "^4.1.0",
"chalk": "^2.4.2"
}
}