-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1009 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": "peschee",
"version": "2.0.2",
"description": "A personal card for Peter Siska (@peschee)",
"license": "MIT",
"author": "Peter Siska <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/peschee/card.git"
},
"type": "module",
"bin": {
"peschee": "./bin/card.js"
},
"files": [
"bin/card.js",
"bin/output"
],
"scripts": {
"build": "npm run lint && node build.js",
"lint": "standard",
"format": "standard --fix",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"start": "npm run build && node ./bin/card.js",
"pretest": "npm run build",
"test": "ava"
},
"devDependencies": {
"ava": "^5.1.0",
"boxen": "^7.0.0",
"chalk": "^5.0.1",
"husky": "^8.0.1",
"standard": "^17.0.0"
},
"keywords": [
"business card",
"card",
"npm",
"npm card",
"npx",
"npx card"
],
"engines": {
"node": ">=14.16"
},
"exports": "./bin/card.js"
}