-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.63 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
54
55
56
57
58
59
60
61
{
"name": "bradgarropy",
"version": "2.5.0",
"description": "🃏 npx business card",
"keywords": [
"npm",
"npx",
"eslint",
"prettier",
"chalk",
"parcel",
"business-card",
"inquirer"
],
"homepage": "https://github.com/bradgarropy/business-card",
"bugs": {
"url": "https://github.com/bradgarropy/business-card/issues"
},
"license": "MIT",
"author": {
"name": "Brad Garropy",
"email": "[email protected]",
"url": "https://bradgarropy.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"bin": {
"bradgarropy": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bradgarropy/business-card"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"build": "parcel build src/index.js --target node --no-source-maps",
"prepare": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"generate": "node src/generator/index.js"
},
"dependencies": {
"chalk": "^4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@bradgarropy/eslint-config": "^1.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"inquirer": "^7.3.3",
"nodemon": "^2.0.6",
"parcel-bundler": "^1.12.4",
"parcel-plugin-clean-dist": "0.0.6",
"parcel-plugin-shebang": "^1.3.1",
"prettier": "^2.2.1"
}
}