-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.04 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
{
"name": "techeverri",
"version": "1.6.0",
"description": "Personal card for Tomas Echeverri (@techeverri)",
"keywords": [
"business card",
"card",
"npm card",
"npm",
"npx card",
"npx",
"techeverri"
],
"license": "MIT",
"author": {
"name": "Tomas Echeverri",
"url": "https://github.com/techeverri"
},
"files": [
"bin/card"
],
"type": "module",
"main": "./bin/cli.js",
"bin": "./bin/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/techeverri/techeverri-cli.git"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "jest",
"print": "node ./bin/cli.js",
"build": "node ./build.js",
"postbuild": "npm run print"
},
"devDependencies": {
"boxen": "^8.0.0",
"chalk": "^5.0.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.6.1",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=12"
}
}