-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
{
"name": "bloggista",
"version": "0.10.0",
"description": "Build and manage blogs tool",
"main": "index.js",
"scripts": {
"development": "tsc --watch",
"compile": "tsc",
"compile:clean": "rm -rf output",
"prepublish": "npm run compile"
},
"bin": {
"bloggista": "./output/index.js"
},
"keywords": [
"Blogs",
"Tools"
],
"contributors": [
"João Glória <jhfgloria@gmail.com> (https://github.com/jhfgloria)"
],
"license": "ISC",
"directories": {
"example": "example",
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhfgloria/bloggista.git"
},
"bugs": {
"url": "https://github.com/jhfgloria/bloggista/issues"
},
"homepage": "https://github.com/jhfgloria/bloggista#readme",
"dependencies": {
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@types/commander": "^2.12.2",
"@types/node": "^18.11.2",
"husky": "^8.0.1"
}
}