forked from bnb/bitandbang
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.12 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
50
51
52
53
{
"name": "@stramel/card",
"version": "2.0.0",
"description": "A personal card for Michael Stramel (@stramel)",
"main": "./bin/card.js",
"bin": {
"stramel": "./bin/card.js"
},
"exports": "./bin/card.js",
"files": [
"bin/card.js",
"bin/output"
],
"repository": {
"type": "git",
"url": "https://github.com/stramel/card.git"
},
"scripts": {
"prepublish": "npm run build",
"build": "node build.js",
"dev": "npm run build && npm start",
"start": "node ./bin/card.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"precommit": "lint-staged"
},
"keywords": [
"card",
"npm",
"npm card",
"npx",
"npx card",
"business card"
],
"author": "Michael Stramel <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
"boxen": "^6.1.0",
"husky": "^7.0.2",
"kleur": "^4.1.4",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
}
}