Skip to content

Commit 78ede5f

Browse files
committed
NPM won't let me have that name I guess...
1 parent 05ca4cb commit 78ede5f

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ensure-that",
2+
"name": "typit",
33
"version": "0.2.0",
44
"description": "Fully recursive runtime typechecking.",
55
"main": "js/main",
@@ -9,7 +9,7 @@
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/T99/ensure-that.git"
12+
"url": "git+https://github.com/T99/typit.git"
1313
},
1414
"keywords": [
1515
"runtime",
@@ -21,9 +21,9 @@
2121
"author": "Trevor Sears <trevorsears.main@gmail.com> (http://trevorsears.io/)",
2222
"license": "ISC",
2323
"bugs": {
24-
"url": "https://github.com/T99/ensure-that/issues"
24+
"url": "https://github.com/T99/typit/issues"
2525
},
26-
"homepage": "https://github.com/T99/ensure-that#readme",
26+
"homepage": "https://github.com/T99/typit#readme",
2727
"dependencies": {
2828
"iter-over": "^1.0.2"
2929
}

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ensure-that
1+
# typit
22
> #### Fully recursive runtime typechecking.
33
44
Runtime type-checking is often useful when interacting with and/or building public APIs in which data might be recieved in a malformed manner. By using a runtime typechecking system, you can ensure that the data you are recieving and attempting to access (in a JSON format) is well-formed, defined, and correctly typed, removing the need to worry or 'check-on-access' the state and type of each key-value pair you attempt to use.
55

6-
### [Find ensure-that on NPM.](https://www.npmjs.com/package/ensure-that)
6+
### [Find typit on NPM.](https://www.npmjs.com/package/typit)

ts/types/array-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Created by Trevor Sears <trevorsears.main@gmail.com>.
33
* 6:14 PM -- May 26th, 2019.
4-
* Project: ensure-that
4+
* Project: typit
55
*/
66

77
import Type from "./type";

ts/types/object-type-definition.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Created by Trevor Sears <trevorsears.main@gmail.com>.
33
* 6:55 PM -- May 26th, 2019.
4-
* Project: ensure-that
4+
* Project: typit
55
*/
66

77
import Type from "./type";

ts/types/object-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Created by Trevor Sears <trevorsears.main@gmail.com>.
33
* 7:30 PM -- May 26th, 2019.
4-
* Project: ensure-that
4+
* Project: typit
55
*/
66

77
import { IOObjectIterator } from "iter-over";

ts/types/optional-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Created by Trevor Sears <trevorsears.main@gmail.com>.
33
* 12:23 AM -- May 27th, 2019.
4-
* Project: ensure-that
4+
* Project: typit
55
*/
66

77
import Type from "./type";

ts/types/special-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Created by Trevor Sears <trevorsears.main@gmail.com>.
33
* 12:08 AM -- May 27th, 2019.
4-
* Project: ensure-that
4+
* Project: typit
55
*/
66

77
import Type from "./type";

ts/types/standard-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Created by Trevor Sears <trevorsears.main@gmail.com>.
33
* 5:59 PM -- May 26th, 2019.
4-
* Project: ensure-that
4+
* Project: typit
55
*/
66

77
import Type from "./type";

ts/types/type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Created by Trevor Sears <trevorsears.main@gmail.com>.
33
* 5:59 PM -- May 26th, 2019.
4-
* Project: ensure-that
4+
* Project: typit
55
*/
66

77
/**

0 commit comments

Comments
 (0)