UNPKG

1.45 kBJSONView Raw
1{
2 "name": "tap-parser",
3 "version": "15.3.0",
4 "description": "parse the test anything protocol",
5 "tshy": {
6 "main": true,
7 "exports": {
8 "./package.json": "./package.json",
9 ".": "./src/index.ts"
10 }
11 },
12 "type": "module",
13 "bin": {
14 "tap-parser": "bin/cmd.cjs"
15 },
16 "main": "./dist/commonjs/index.js",
17 "types": "./dist/commonjs/index.d.ts",
18 "exports": {
19 "./package.json": "./package.json",
20 ".": {
21 "import": {
22 "types": "./dist/esm/index.d.ts",
23 "default": "./dist/esm/index.js"
24 },
25 "require": {
26 "types": "./dist/commonjs/index.d.ts",
27 "default": "./dist/commonjs/index.js"
28 }
29 }
30 },
31 "files": [
32 "dist",
33 "bin"
34 ],
35 "scripts": {
36 "snap": "tap",
37 "test": "tap",
38 "prepare": "tshy",
39 "pretest": "npm run prepare",
40 "presnap": "npm run prepare",
41 "format": "prettier --write . --loglevel warn --ignore-path ../../.prettierignore --cache",
42 "typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts"
43 },
44 "license": "BlueOak-1.0.0",
45 "dependencies": {
46 "events-to-array": "^2.0.3",
47 "tap-yaml": "2.2.0"
48 },
49 "tap": {
50 "include": [
51 "test/*.ts"
52 ],
53 "coverage-map": "map.js",
54 "typecheck": false
55 },
56 "keywords": [
57 "tap",
58 "test",
59 "parser"
60 ],
61 "engines": {
62 "node": ">=16"
63 },
64 "repository": {
65 "type": "git",
66 "url": "git+https://github.com/tapjs/tapjs.git"
67 }
68}