-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.3 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.3 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
{
"name": "convrt",
"version": "1.1.0",
"description": "A CLI tool for easy conversion between kilos and pounds",
"main": "index.js",
"module": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/remisture/convrt"
},
"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": {
"convrt": "./cli.js"
},
"keywords": [
"cli",
"lbs",
"kgs",
"convert",
"kilos",
"pounds",
"metric",
"imperial",
"javascript",
"node",
"nodejs"
],
"author": "Remi Sture <post@remisture.no>",
"license": "ISC",
"devDependencies": {
"ava": "^6.1.1",
"c8": "^10.1.2",
"prettier": "^3.2.5",
"xo": "^0.58.0"
},
"dependencies": {
"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",
"inquirer": "^12.3.0",
"node-localstorage": "^3.0.5"
}
}