-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
{
"name": "@danpacho/post-generator",
"version": "1.2.15",
"description": "CLI post generator for better writing UX",
"author": "danpacho",
"license": "MIT",
"private": false,
"type": "module",
"bin": "./build/app.js",
"source": "./src/app.js",
"main": "./build/app.js",
"module": "./build/module.js",
"homepage": "https://github.com/danpacho/blog-post-generator#readme",
"repository": {
"type": "git",
"url": "https://github.com/danpacho/blog-post-generator"
},
"bugs": {
"url": "https://github.com/danpacho/blog-post-generator/issues"
},
"keywords": [
"cli",
"post generator"
],
"scripts": {
"dev": "node src/app.js",
"dev:watch": "parcel watch",
"build": "parcel build --dist-dir build",
"build:test": "node build/app.js",
"lint": "eslint '**/*.js'",
"prettier": "prettier '**/*.{js,json,md}' --check",
"prettier:fix": "prettier '**/*.{js,json,md}' --write",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^5.0.1",
"figlet": "^1.5.2",
"inquirer": "^8.2.4",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"parcel": "^2.7.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"engines": {
"node": ">= 16"
}
}