@ts-common/json
Advanced tools
Comparing version 0.1.5 to 0.1.6
import { MutableStringMap, StringMap } from "@ts-common/string-map"; | ||
export interface JsonObjectInterface extends StringMap<Json | undefined> { | ||
export interface JsonObjectInterface extends StringMap<Json> { | ||
} | ||
@@ -11,3 +11,3 @@ export declare type JsonObject = JsonObjectInterface & object; | ||
export declare type Json = JsonPrimitive | JsonRef; | ||
export declare type MutableJsonObject = MutableStringMap<Json | undefined> & object; | ||
export declare type MutableJsonObject = MutableStringMap<Json> & object; | ||
export declare type MutableJsonArray = Json[]; | ||
@@ -14,0 +14,0 @@ export declare type MutableJsonRef = MutableJsonObject | MutableJsonArray; |
{ | ||
"name": "@ts-common/json", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "JSON Data Type", | ||
@@ -10,3 +10,3 @@ "main": "dist/index.js", | ||
"test": "tsc && npm run tslint && nyc mocha dist/test/*.js", | ||
"prepack": "npm install & tsc" | ||
"prepack": "npm install && tsc" | ||
}, | ||
@@ -26,3 +26,4 @@ "repository": { | ||
"dist/index.js.map", | ||
"dist/index.d.ts.map" | ||
"dist/index.d.ts.map", | ||
"src/index.ts" | ||
], | ||
@@ -47,12 +48,12 @@ "nyc": { | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^10.12.10", | ||
"@types/node": "^10.12.11", | ||
"mocha": "^5.2.0", | ||
"nyc": "^13.1.0", | ||
"tslint": "^5.11.0", | ||
"typescript": "^3.1.6" | ||
"typescript": "^3.2.1" | ||
}, | ||
"dependencies": { | ||
"@ts-common/iterator": "^0.1.0", | ||
"@ts-common/string-map": "^0.2.0" | ||
"@ts-common/iterator": "^0.1.1", | ||
"@ts-common/string-map": "^0.2.2" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20547
8
100
Updated@ts-common/iterator@^0.1.1
Updated@ts-common/string-map@^0.2.2