|
1 | 1 | { |
2 | 2 | "name": "@mojotech/json-type-validation", |
3 | | - "version": "1.0.1", |
| 3 | + "version": "1.0.2", |
4 | 4 | "description": "runtime type checking and validation of untyped JSON data", |
5 | | - "keywords": ["TypeScript", "JSON"], |
| 5 | + "keywords": [ |
| 6 | + "TypeScript", |
| 7 | + "JSON" |
| 8 | + ], |
6 | 9 | "main": "dist/index.umd.js", |
7 | 10 | "module": "dist/index.es5.js", |
8 | 11 | "typings": "dist/types/index.d.ts", |
9 | | - "files": ["dist"], |
| 12 | + "files": [ |
| 13 | + "dist" |
| 14 | + ], |
10 | 15 | "author": "Elias Mulhall <elias@mojotech.com>", |
11 | 16 | "repository": { |
12 | 17 | "type": "git", |
|
23 | 28 | "scripts": { |
24 | 29 | "lint": "tslint -t codeFrame --project tsconfig-test.json", |
25 | 30 | "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", |
28 | 32 | "start": "rollup -c rollup.config.ts -w", |
29 | 33 | "test": "jest", |
30 | 34 | "test:watch": "jest --watch", |
|
40 | 44 | ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js" |
41 | 45 | }, |
42 | 46 | "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 | + ], |
45 | 56 | "coverageThreshold": { |
46 | 57 | "global": { |
47 | 58 | "branches": 90, |
|
0 commit comments