-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Elias Mulhall
committed
Feb 8, 2018
1 parent
7e32bce
commit 91c51c8
Showing
1 changed file
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
{ | ||
"name": "@mojotech/json-type-validation", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "runtime type checking and validation of untyped JSON data", | ||
"keywords": ["TypeScript", "JSON"], | ||
"keywords": [ | ||
"TypeScript", | ||
"JSON" | ||
], | ||
"main": "dist/index.umd.js", | ||
"module": "dist/index.es5.js", | ||
"typings": "dist/types/index.d.ts", | ||
"files": ["dist"], | ||
"files": [ | ||
"dist" | ||
], | ||
"author": "Elias Mulhall <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -23,8 +28,7 @@ | |
"scripts": { | ||
"lint": "tslint -t codeFrame --project tsconfig-test.json", | ||
"prebuild": "rimraf dist", | ||
"build": | ||
"tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme markdown --readme DOCS.md --mdHideSources --mode modules --excludeNotExported src", | ||
"build": "tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme markdown --readme DOCS.md --mdHideSources --mode modules --excludeNotExported src", | ||
"start": "rollup -c rollup.config.ts -w", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
|
@@ -40,8 +44,15 @@ | |
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" | ||
}, | ||
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", | ||
"moduleFileExtensions": ["ts", "tsx", "js"], | ||
"coveragePathIgnorePatterns": ["/node_modules/", "/test/"], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js" | ||
], | ||
"coveragePathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/test/" | ||
], | ||
"coverageThreshold": { | ||
"global": { | ||
"branches": 90, | ||
|