-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.32 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "cli-bmi",
"version": "1.1.0",
"description": "A CLI tool for BMI calculation",
"main": "index.js",
"module": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/remisture/cli-bmi"
},
"scripts": {
"bump:major": "npm version major",
"bump:minor": "npm version minor",
"bump:patch": "npm version patch",
"validate-code": "npm test && npm run prettier:check",
"format": "xo --fix --prettier && npm run prettier:write",
"prettier:check": "prettier --check --cache .",
"prettier:write": "prettier --write --cache .",
"preversion": "npm run validate-code",
"test": "xo --prettier && c8 ava"
},
"ava": {
"files": [
"tests/**/*.test.js"
]
},
"bin": {
"bmi": "./cli.js"
},
"keywords": [
"cli",
"bmi",
"calc",
"calculation",
"calculate",
"kgs",
"convert",
"kilos",
"weight",
"metric",
"height",
"javascript",
"node",
"nodejs"
],
"author": "Remi Sture <post@remisture.no>",
"license": "ISC",
"devDependencies": {
"ava": "^6.1.1",
"c8": "^10.1.2",
"prettier": "^3.0.3",
"xo": "^0.58.0"
},
"dependencies": {
"@inquirer/input": "^4.0.0",
"boxen": "^8.0.1",
"chalk": "^5.2.0",
"clear": "^0.1.0",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.1",
"figlet": "^1.6.0",
"node-localstorage": "^3.0.5"
}
}