File size: 1,045 Bytes
d4b85c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  "name": "outvariant",
  "version": "1.4.3",
  "description": "Type-safe implementation of invariant with positionals.",
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "typings": "lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/index.js",
      "default": "./lib/index.mjs"
    }
  },
  "author": "Artem Zakharchenko",
  "license": "MIT",
  "scripts": {
    "test": "jest",
    "clean": "rimraf ./lib",
    "build": "yarn clean && tsup",
    "prepublishOnly": "yarn test && yarn build",
    "release": "release publish"
  },
  "files": [
    "lib"
  ],
  "keywords": [
    "invariant",
    "outvariant",
    "exception",
    "positional"
  ],
  "devDependencies": {
    "@ossjs/release": "^0.8.0",
    "@types/jest": "^26.0.23",
    "jest": "^27.0.6",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.3",
    "ts-node": "^10.0.0",
    "tsup": "^6.2.3",
    "typescript": "^4.3.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/open-draft/outvariant"
  }
}