-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 893 Bytes
/
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
{
"name": "bukurain",
"version": "1.0.2",
"description": "A CLI used to create html files from text file",
"main": "index.js",
"bin": {
"buku": "./bin/index.js"
},
"type": "module",
"scripts": {
"test": "vitest",
"format": "prettier --write '**/*.{js,html}' --ignore-path .prettierignore",
"lint": "eslint ./src --ext .js ./bin --ext .js"
},
"keywords": [],
"author": "Pavel Belokon",
"license": "ISC",
"dependencies": {
"@ltd/j-toml": "^1.38.0",
"arg": "^5.0.2",
"chalk": "^5.3.0",
"fs-extra": "^11.1.1",
"gradient-string": "^2.0.2",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "3.0.3",
"vitest": "^0.34.6"
}
}