UNPKG

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