package.json 597 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  "name": "assert-never",
  "version": "1.2.1",
  "description": "Helper function for exhaustive checks of discriminated unions in TypeScript",
  "main": "index.js",
  "typings": "index.d.ts",
  "files": [
    "index.js",
    "index.ts",
    "index.d.ts"
  ],
  "scripts": {
    "build": "tsc",
    "prepublish": "npm run build"
  },
  "keywords": [
    "typescript",
    "discriminated unions",
    "assert",
    "never"
  ],
  "repository": "aikoven/assert-never",
  "author": "Daniel Lytkin <dan.lytkin@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "typescript": "^2.2.1"
  }
}