-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.92 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@konfirm/guard",
"version": "2.0.2",
"description": "Building blocks for type guards",
"iife": "dist/guard.js",
"main": "dist/guard.cjs.js",
"module": "dist/guard.es.js",
"types": "dist/guard.d.ts",
"exports": {
".": {
"types": "./source/main.ts",
"import": "./dist/guard.es.js",
"require": "./dist/guard.cjs.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/konfirm/guards.git"
},
"bugs": {
"url": "https://github.com/konfirm/guards/issues"
},
"scripts": {
"test": "run-script-os",
"test:nix": "ts-node node_modules/tape/bin/tape 'test/**/*.ts'",
"test:win32": "ts-node node_modules/tape/bin/tape test/**/*.ts",
"test:coverage": "run-script-os",
"test:coverage:nix": "nyc --reporter=html --require ts-node/register tape 'test/**/*.ts' | tap-arc",
"test:coverage:win32": "nyc --reporter=html --require ts-node/register tape test/**/*.ts | tap-arc",
"test:pretty": "run-script-os",
"test:pretty:nix": "nyc --require ts-node/register tape 'test/**/*.ts' | tap-arc",
"test:pretty:win32": "nyc --require ts-node/register tape test/**/*.ts | tap-arc",
"prebuild": "tsc --declarationDir temp --declaration true --emitDeclarationOnly true",
"build": "rollup -c rollup.config.mjs",
"postbuild": "rm -rf temp",
"prepublish": "npm run build"
},
"keywords": [
"type guards",
"guards"
],
"author": "Rogier Spieker <rogier+npm@konfirm.eu>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/tape": "^5.6.1",
"nyc": "^15.1.0",
"rollup": "^4.0.2",
"rollup-plugin-dts": "^6.1.0",
"run-script-os": "^1.1.6",
"tap-arc": "^1.0.2",
"tape": "^5.7.1",
"template-literal-each": "^3.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@konfirm/stringify": "^1.0.4"
}
}