Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias Mulhall committed Feb 8, 2018
1 parent 7e32bce commit 91c51c8
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions package.json
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",
Expand All @@ -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",
Expand All @@ -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,
Expand Down

0 comments on commit 91c51c8

Please sign in to comment.