-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 992 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
36
37
38
39
{
"name": "@jarmentor/title-cli",
"version": "1.0.0",
"description": "A command-line interface for converting strings to APA compliant title case",
"main": "index.js",
"bin": {
"title-cli": "./index.js"
},
"homepage": "https://github.com/jarmentor/title-cli",
"scripts": {
"start": "node --harmony ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"terminal",
"command line",
"apa format",
"string formatting",
"change case",
"title",
"formatting",
"node",
"cli",
"developer tools"
],
"engines": {
"node": ">12"
},
"author": {
"name": "Jonathan Armentor",
"email": "[email protected]",
"url": "https://github.com/jarmentor"
},
"license": "MIT",
"dependencies": {
"ap-style-title-case": "^1.1.2",
"commander": "^7.2.0"
}
}