Skip to content

Instantly share code, notes, and snippets.

View alopix's full-sized avatar
🦊
Silver Fox

Dustin alopix

🦊
Silver Fox
View GitHub Profile
@alopix
alopix / package-json.d.ts
Last active May 15, 2019 11:34 — forked from iainjreid/package-json.d.ts
A TypeScript type definition for NPM package files
export interface PackageJson {
name: string;
version?: string;
description?: string;
keywords?: string[];
homepage?: string;
bugs?: string | Bugs;
license?: string;
author?: string | Author;
contributors?: string[] | Author[];