Skip to content

Commit ef2b009

Browse files
The unscoped NPM package is now just a wrapper around the @jsdevtools scoped package
1 parent 2670b99 commit ef2b009

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

dist/index.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import chaiExecSync from "@jsdevtools/chai-exec";
2+
export * from "@jsdevtools/chai-exec";
3+
export default chaiExecSync;

dist/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"use strict";
2+
module.exports = require("@jsdevtools/chai-exec");

dist/package.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "chai-exec",
3+
"version": "X.X.X",
4+
"description": "Chai assertions for testing your CLI",
5+
"keywords": [
6+
"chai",
7+
"chai-plugin",
8+
"cli",
9+
"spawn",
10+
"exec"
11+
],
12+
"author": {
13+
"name": "Randall Krauskopf",
14+
"url": "http://github.com/rkrauskopf"
15+
},
16+
"contributors": [
17+
"Randall Krauskopf (http://github.com/rkrauskopf)",
18+
"James Messinger (https://jamesmessinger.com)"
19+
],
20+
"license": "MIT",
21+
"homepage": "https://jstools.dev/chai-exec",
22+
"repository": {
23+
"type": "git",
24+
"url": "https://github.com/JS-DevTools/chai-exec.git"
25+
},
26+
"main": "index.js",
27+
"types": "index.d.ts",
28+
"files": [
29+
"index.js",
30+
"index.d.ts"
31+
],
32+
"engines": {
33+
"node": ">=10"
34+
},
35+
"dependencies": {
36+
"@jsdevtools/chai-exec": "X.X.X"
37+
}
38+
}

0 commit comments

Comments
 (0)