-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1008 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1008 Bytes
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
{
"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",
"build": "tsup",
"prepublishOnly": "pnpm test && pnpm build",
"release": "release publish"
},
"files": [
"lib"
],
"keywords": [
"invariant",
"outvariant",
"exception",
"positional"
],
"devDependencies": {
"@ossjs/release": "^0.8.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.0.0",
"jest": "^27.0.6",
"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"
}
}