-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.13 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
57
58
59
{
"name": "@haroun/b64-cli",
"version": "3.0.0",
"description": "Command line interface to decode/encode base64 data",
"main": "cli.js",
"type": "module",
"scripts": {
"debug": "node --inspect --inspect-brk cli.js",
"test": "node test.js | faucet",
"postversion": "git push && git push --tags",
"pretest": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haroun/b64-cli.git"
},
"keywords": [
"b64",
"base64",
"encode",
"decode",
"cli-app",
"cli",
"atob",
"btoa"
],
"author": "Harouna Traore",
"license": "MIT",
"bugs": {
"url": "https://github.com/haroun/b64-cli/issues"
},
"homepage": "https://github.com/haroun/b64-cli#readme",
"devDependencies": {
"execa": "^6.1.0",
"faucet": "0.0.1",
"tape": "^5.0.1",
"xo": "^0.48.0"
},
"dependencies": {
"get-stdin": "^9.0.0",
"meow": "^10.1.2"
},
"bin": {
"b64": "cli.js"
},
"files": [
"cli.js"
],
"engines": {
"node": ">=10.0.0"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"unicorn/string-content": "off"
}
}
}