Skip to content

Commit 91c51c8

Browse files
author
Elias Mulhall
committed
1.0.2
1 parent 7e32bce commit 91c51c8

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

package.json

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"name": "@mojotech/json-type-validation",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "runtime type checking and validation of untyped JSON data",
5-
"keywords": ["TypeScript", "JSON"],
5+
"keywords": [
6+
"TypeScript",
7+
"JSON"
8+
],
69
"main": "dist/index.umd.js",
710
"module": "dist/index.es5.js",
811
"typings": "dist/types/index.d.ts",
9-
"files": ["dist"],
12+
"files": [
13+
"dist"
14+
],
1015
"author": "Elias Mulhall <[email protected]>",
1116
"repository": {
1217
"type": "git",
@@ -23,8 +28,7 @@
2328
"scripts": {
2429
"lint": "tslint -t codeFrame --project tsconfig-test.json",
2530
"prebuild": "rimraf dist",
26-
"build":
27-
"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",
31+
"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",
2832
"start": "rollup -c rollup.config.ts -w",
2933
"test": "jest",
3034
"test:watch": "jest --watch",
@@ -40,8 +44,15 @@
4044
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
4145
},
4246
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
43-
"moduleFileExtensions": ["ts", "tsx", "js"],
44-
"coveragePathIgnorePatterns": ["/node_modules/", "/test/"],
47+
"moduleFileExtensions": [
48+
"ts",
49+
"tsx",
50+
"js"
51+
],
52+
"coveragePathIgnorePatterns": [
53+
"/node_modules/",
54+
"/test/"
55+
],
4556
"coverageThreshold": {
4657
"global": {
4758
"branches": 90,

0 commit comments

Comments
 (0)