Skip to content

Instantly share code, notes, and snippets.

View fis-cz's full-sized avatar

Fis fis-cz

  • Atom Software Studios, s.r.o.
  • Czech Republic
View GitHub Profile
@iainjreid
iainjreid / package-json.d.ts
Last active February 13, 2020 20:28
A Typescript type definition for NPM package files
export interface IPackageJSON extends Object {
readonly name: string;
readonly version?: string;
readonly description?: string;
readonly keywords?: string[];