Socket
Socket
Sign inDemoInstall

@tapjs/test

Package Overview
Dependencies
Maintainers
2
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tapjs/test - npm Package Compare versions

Comparing version 0.0.0-21 to 0.0.0-22

dist/commonjs/default-plugins.d.ts

51

package.json
{
"name": "@tapjs/test",
"version": "0.0.0-21",
"version": "0.0.0-22",
"description": "the pluggable Test class for node-tap",

@@ -13,25 +13,38 @@ "author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",

"type": "module",
"tshy": {
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json",
"./built": {
"import": {
"types": "./test-built/dist/esm/index.d.ts",
"default": "./test-built/dist/esm/index.js"
},
"require": {
"types": "./test-built/dist/commonjs/index.d.ts",
"default": "./test-built/dist/commonjs/index.js"
}
}
}
},
"exports": {
"./package.json": {
"import": "./package.json",
"require": "./package.json"
},
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./package.json": "./package.json",
"./built": {
"import": {
"types": "./test-built/dist/mjs/index.d.ts",
"default": "./test-built/dist/mjs/index.js"
"types": "./test-built/dist/esm/index.d.ts",
"default": "./test-built/dist/esm/index.js"
},
"require": {
"types": "./test-built/dist/cjs/index.d.ts",
"default": "./test-built/dist/cjs/index.js"
"types": "./test-built/dist/commonjs/index.d.ts",
"default": "./test-built/dist/commonjs/index.js"
}

@@ -48,3 +61,3 @@ }

"test": "tap",
"build": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash scripts/fixup.sh",
"build": "tshy",
"pretest": "npm run build",

@@ -60,3 +73,3 @@ "presnap": "npm run build",

"peerDependencies": {
"@tapjs/core": "0.0.0-21"
"@tapjs/core": "0.0.0-22"
},

@@ -67,6 +80,8 @@ "dependencies": {

"mkdirp": "^3.0.0",
"resolve-import": "^1.2.1",
"sync-content": "^1.0.1",
"tap-parser": "15.0.0-3",
"ts-node": "github:TypeStrong/ts-node#8f6f4e5",
"typescript": "^5.1.6"
"tap-parser": "15.0.0-4",
"ts-node": "npm:@isaacs/ts-node-temp-fork-for-pr-2009@^10.9.1",
"tshy": "^1.0.0-3",
"typescript": "5.2"
},

@@ -73,0 +88,0 @@ "license": "BlueOak-1.0.0",

@@ -7,14 +7,11 @@ {

"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"types": "./dist/mjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}

@@ -25,6 +22,6 @@ }

"scripts": {
"prepare": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash scripts/fixup.sh",
"typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts"
"prepare": "tshy",
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
},
"license": "BlueOak-1.0.0"
}
{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node16",
"jsx": "react",
"module": "nodenext",
"moduleResolution": "nodenext",
"resolveJsonModule": true,

@@ -13,5 +12,4 @@ "skipLibCheck": true,

"strict": true,
"target": "es2022",
"module": "esnext"
"target": "es2022"
}
}

@@ -7,23 +7,30 @@ {

"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"types": "./dist/mjs/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"prepare": "tsc -p tsconfig/cjs.json && tsc -p tsconfig/esm.json && bash scripts/fixup.sh",
"typedoc": "typedoc --tsconfig tsconfig/esm.json ./src/*.ts"
"prepare": "tshy",
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
},
"license": "BlueOak-1.0.0"
"license": "BlueOak-1.0.0",
"type": "module",
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
}
}

@@ -45,7 +45,7 @@ //{{HEADER COMMENT START}}

//{{FILE TYPES START}}
testFileExtensions.add("ts")
testFileExtensions.add("cts")
testFileExtensions.add("jsx")
testFileExtensions.add("mts")
testFileExtensions.add("ts")
testFileExtensions.add("tsx")
testFileExtensions.add("jsx")
//{{FILE TYPES END}}

@@ -52,0 +52,0 @@

@@ -5,6 +5,9 @@ {

"declarationMap": true,
"inlineSources": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node16",
"inlineSources": true,
"jsx": "react",
"module": "nodenext",
"moduleResolution": "nodenext",
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,

@@ -14,5 +17,4 @@ "skipLibCheck": true,

"strict": true,
"target": "es2022",
"module": "esnext"
"target": "es2022"
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc