Skip to content
This repository was archived by the owner on May 11, 2021. It is now read-only.

Commit fb741d5

Browse files
authored
Merge pull request #7 from sevenwestmedia-labs/greenkeeper/initial
Update dependencies to enable Greenkeeper 🌴
2 parents a261b1e + 38a58a5 commit fb741d5

File tree

3 files changed

+454
-3663
lines changed

3 files changed

+454
-3663
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Typescript Object Validator
22

3-
[![Build Status](https://travis-ci.com/sevenwestmedia-labs/typescript-object-validator.svg?branch=master)](https://travis-ci.com/sevenwestmedia-labs/typescript-object-validator)
3+
[![Build Status](https://travis-ci.com/sevenwestmedia-labs/typescript-object-validator.svg?branch=master)](https://travis-ci.com/sevenwestmedia-labs/typescript-object-validator) [![Greenkeeper badge](https://badges.greenkeeper.io/sevenwestmedia-labs/typescript-object-validator.svg)](https://greenkeeper.io/)
44

55
A simple library for typescript projects to validating object shapes. You can use this package to declare the shape you'd like an object to align to. This is handy when you have a complex object (for example, an API response) and want to validate the object, AND have typescript recognize the shape.
66

package.json

+5-9
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,23 @@
1111
"build:cjs": "tsc -p tsconfig.build.json --module commonjs --target es5 --outDir dist/cjs",
1212
"lint": "eslint --ext .js,.ts src",
1313
"test": "jest",
14-
"verify": "yarn tsc -p tsconfig.json && yarn test && yarn lint",
15-
"cz": "git-cz"
14+
"verify": "yarn tsc -p tsconfig.json && yarn test && yarn lint"
1615
},
1716
"author": "Jake Ginnivan",
1817
"license": "MIT",
1918
"devDependencies": {
20-
"@types/jest": "^24.0.16",
19+
"@types/jest": "^24.0.18",
2120
"@typescript-eslint/eslint-plugin": "^2.0.0",
2221
"@typescript-eslint/parser": "^2.0.0",
23-
"commitizen": "^4.0.3",
24-
"cz-conventional-changelog": "^3.0.2",
2522
"eslint": "^6.2.2",
2623
"eslint-config-prettier": "^6.1.0",
2724
"eslint-config-wanews-base": "^2.0.0",
28-
"jest": "^24.8.0",
29-
"semantic-release": "^15.13.19",
25+
"jest": "^24.9.0",
3026
"ts-jest": "^24.0.2",
3127
"tslib": "^1.10.0",
32-
"typescript": "^3.5.3"
28+
"typescript": "^3.6.2"
3329
},
3430
"peerDependencies": {
3531
"tslib": "^1.10.0"
3632
}
37-
}
33+
}

0 commit comments

Comments
 (0)