-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.68 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@mlnck/me",
"version": "1.0.4",
"description": "Personal npm card for mlnck (@mlnck)",
"main": "dist/card.js",
"unpkg": "index.html",
"repository": {
"type": "git",
"url": "https://github.com/mlnck/me.git"
},
"scripts": {
"prepare": "node src/htmlify",
"prepublishOnly": "rm -rf dist && webpack"
},
"bin": {
"me": "bin/index.js"
},
"files": [
"bin",
"dist",
"index.html"
],
"keywords": [
"card",
"npm",
"npm card",
"npx",
"npx card",
"business card"
],
"author": "mlnck",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"ansi-to-html": "^0.6.9",
"babel-loader": "^8.0.4",
"boxen": "^2.1.0",
"chalk": "^2.4.1",
"chalker": "^1.0.0",
"lodash.get": "^4.4.2",
"webpack": "^4.28.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"myCard": {
"info": {
"name": "jack.melnick",
"handle": "mlnck",
"github": "mlnck",
"githubdq": "DownQuark-Work",
"libations": "Bourbon.IPA.Martini[dirty]gin.Merlot",
"linkedin": "mlnck",
"mail": "jack.d.melnick@gmail.com",
"npm": "melnick",
"twitter": "mlnck",
"web": "http://www.mlnck.me",
"wallet": "0xe3dA70A4deBB71d9944753ab119A6F535678F559",
"work": "devigner"
},
"data": [
" <white>{{name}}</><green> / </><cyan>@{{handle}}</>",
"",
{
"label": "<blue>🤓</> ",
"text": "{{work}}"
},
{
"label": "<blue>💰</> ",
"text": "{{wallet}}"
},
{
"label": "<blue>📧</> ",
"text": "{{mail}}"
},
{
"label": "<blue>🍻</> ",
"text": "{{libations}}"
},
"",
{
"label": "🐦 ",
"text": "https://twitter.com/<cyan>{{twitter}}</>",
"when": "{{twitter}}"
},
{
"label": "<red>🅽</> ",
"text": "https://www.npmjs.com/<red>~{{npm}}</>",
"when": "{{npm}}"
},
{
"label": "🐙🐱 ",
"text": "https://github.com/<green>{{github}}</>",
"when": "{{github}}"
},
{
"label": " ",
"text": "https://github.com/<green>{{githubdq}}</>",
"when": "{{githubdq}}"
},
{
"label": "🔗 ",
"text": "https://www.linkedin.com/in/<blue>{{linkedin}}</>",
"when": "{{linkedin}}"
},
{
"label": "🖥 ",
"text": "<cyan>{{web}}</>",
"when": "{{web}}"
},
"",
{
"label": " 🏃♂️ ",
"text": "<red>npx</> {{_packageName}}"
}
]
}
}