-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "text-transform-cli",
"version": "3.1.0",
"description": "A collection of CLI tools to operate frequently needed text transformations",
"main": "index.js",
"bin": {
"bolditalicsans": "bin/bolditalicsans",
"bolditalicserif": "bin/bolditalicserif",
"boldsans": "bin/boldsans",
"boldserif": "bin/boldserif",
"camel": "bin/camel",
"capitalize": "bin/capitalize",
"colon": "bin/colon",
"gothic": "bin/gothic",
"gothicbold": "bin/gothicbold",
"htmldecode": "bin/htmldecode",
"htmlencode": "bin/htmlencode",
"italicsans": "bin/italicsans",
"italicserif": "bin/italicserif",
"kebab": "bin/kebab",
"length": "bin/length",
"lowercase": "bin/lowercase",
"monospace": "bin/monospace",
"pascal": "bin/pascal",
"randomcase": "bin/randomcase",
"reverse": "bin/reverse",
"reversewords": "bin/reversewords",
"snake": "bin/snake",
"startcase": "bin/startcase",
"strike": "bin/strike",
"subscript": "bin/subscript",
"superscript": "bin/superscript",
"underline": "bin/underline",
"unicode": "bin/unicode",
"uppercase": "bin/uppercase",
"upsidedown": "bin/upsidedown",
"urldecode": "bin/urldecode",
"urlencode": "bin/urlencode",
"zalgo": "bin/zalgo"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./scripts/update_bin",
"update-bin": "./scripts/update_bin",
"update-toc": "./scripts/update_toc",
"postpublish": "git push --tags"
},
"files": [
"bin",
"lib",
"index.js"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/text-transform-cli.git"
},
"keywords": [
"case",
"CLI"
],
"author": "maxlath",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxlath/text-transform-cli/issues"
},
"homepage": "https://github.com/maxlath/text-transform-cli#readme",
"dependencies": {
"copy2cb": "^1.0.5",
"lodash": "^4.17.15"
},
"engines": {
"node": ">= 7.6"
},
"devDependencies": {}
}