@apiverve/titlecapitalization 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -14
  2. package/package.json +31 -31
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Title Capitalization API
1
+ Title Case Converter API
2
2
  ============
3
3
 
4
4
  Title Capitalization is a simple tool for converting title text to various cases. It returns the text converted to your desired case.
@@ -7,7 +7,7 @@ Title Capitalization is a simple tool for converting title text to various cases
7
7
  ![Code Climate](https://img.shields.io/badge/maintainability-B-purple)
8
8
  ![Prod Ready](https://img.shields.io/badge/production-ready-blue)
9
9
 
10
- This is a Javascript Wrapper for the [Title Capitalization API](https://apiverve.com/marketplace/api/titlecapitalization)
10
+ This is a Javascript Wrapper for the [Title Case Converter API](https://apiverve.com/marketplace/api/titlecapitalization)
11
11
 
12
12
  ---
13
13
 
@@ -25,7 +25,7 @@ You can get it by signing up at [https://apiverve.com](https://apiverve.com)
25
25
 
26
26
  ## Usage
27
27
 
28
- The Title Capitalization API documentation is found here: [https://docs.apiverve.com/api/titlecapitalization](https://docs.apiverve.com/api/titlecapitalization).
28
+ The Title Case Converter API documentation is found here: [https://docs.apiverve.com/api/titlecapitalization](https://docs.apiverve.com/api/titlecapitalization).
29
29
  You can find parameters, example responses, and status codes documented here.
30
30
 
31
31
  ### Setup
@@ -47,9 +47,9 @@ Using the API client, you can perform requests to the API.
47
47
  ###### Define Query
48
48
 
49
49
  ```
50
- var query = {
51
- "text": "comprehensive analysis of quarterly financial performance and strategic initiatives for sustainable growth",
52
- "style": "title-case"
50
+ var query = {
51
+ "text": "comprehensive analysis of quarterly financial performance and strategic initiatives for sustainable growth",
52
+ "style": "title-case"
53
53
  };
54
54
  ```
55
55
 
@@ -68,14 +68,14 @@ api.execute(query, function (error, data) {
68
68
  ###### Example Response
69
69
 
70
70
  ```
71
- {
72
- "status": "ok",
73
- "error": null,
74
- "data": {
75
- "style": "title-case",
76
- "text": "Comprehensive Analysis of Quarterly Financial Performance and Strategic Initiatives for Sustainable Growth"
77
- },
78
- "code": 200
71
+ {
72
+ "status": "ok",
73
+ "error": null,
74
+ "data": {
75
+ "style": "title-case",
76
+ "text": "Comprehensive Analysis of Quarterly Financial Performance and Strategic Initiatives for Sustainable Growth"
77
+ },
78
+ "code": 200
79
79
  }
80
80
  ```
81
81
 
package/package.json CHANGED
@@ -1,32 +1,32 @@
1
- {
2
- "name": "@apiverve/titlecapitalization",
3
- "version": "1.1.4",
4
- "description": "Title Capitalization is a simple tool for converting title text to various cases. It returns the text converted to your desired case.",
5
- "main": "index.js",
6
- "scripts": {
7
- "test": "mocha"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/apiverve/titlecapitalization-API.git"
12
- },
13
- "keywords": [
14
- "title capitalization","title capitalization api","title capitalization tool","title capitalization software","title capitalization service"
15
- ],
16
- "author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
17
- "license": "MIT",
18
- "bugs": {
19
- "url": "https://github.com/apiverve/titlecapitalization-API/issues"
20
- },
21
- "homepage": "https://apiverve.com/marketplace/api/titlecapitalization",
22
- "devDependencies": {
23
- "mocha": "^10.7.3",
24
- "chai": "^5.1.1",
25
- "dotenv": "^16.4.5"
26
- },
27
- "dependencies": {
28
- "node-fetch": "^3.3.2",
29
- "promise": "^8.3.0",
30
- "axios": "1.7.4"
31
- }
1
+ {
2
+ "name": "@apiverve/titlecapitalization",
3
+ "version": "1.1.6",
4
+ "description": "Title Capitalization is a simple tool for converting title text to various cases. It returns the text converted to your desired case.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "mocha"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/apiverve/titlecapitalization-API.git"
12
+ },
13
+ "keywords": [
14
+ "title capitalization","title capitalization api","title capitalization tool","title capitalization software","title capitalization service"
15
+ ],
16
+ "author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
17
+ "license": "MIT",
18
+ "bugs": {
19
+ "url": "https://github.com/apiverve/titlecapitalization-API/issues"
20
+ },
21
+ "homepage": "https://apiverve.com/marketplace/api/titlecapitalization?utm_source=npm",
22
+ "devDependencies": {
23
+ "mocha": "^11.0.1",
24
+ "chai": "^5.1.2",
25
+ "dotenv": "^16.4.7"
26
+ },
27
+ "dependencies": {
28
+ "node-fetch": "^3.3.2",
29
+ "promise": "^8.3.0",
30
+ "axios": "1.7.9"
31
+ }
32
32
  }