This commit is contained in:
Leonid Logvinov
2019-02-04 10:12:49 +01:00
parent 1d3fff32a2
commit 6943bbcacb
106 changed files with 1110 additions and 685 deletions

View File

@@ -685,3 +685,23 @@ export interface DutchAuctionDetails {
currentAmount: BigNumber;
currentTimeSeconds: BigNumber;
}
export interface PackageJSON {
private?: boolean;
version: string;
name: string;
main?: string;
scripts?: { [command: string]: string };
config?: {
postpublish?: {
assets?: string[];
docOmitExports?: string[];
dockerHubRepo?: string;
};
'abis:comment'?: string;
abis?: string;
};
dependencies?: { [dependencyName: string]: string };
devDependencies?: { [dependencyName: string]: string };
workspaces?: string[];
}