quidproquo-testing 0.0.172

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # quidproquo
2
+
3
+ JS Library for building web servers using pure functions and generators.
4
+
5
+ ## tsconfig
6
+
7
+ core for quidproquo library packages ~ Should probably not be used by itself
8
+
9
+ use `quidproquo`
10
+
11
+ ### Note
12
+
13
+ Currently under development ~ Not for production
@@ -0,0 +1 @@
1
+ export declare const __PLACEHOLDER__ = 0;
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.__PLACEHOLDER__ = void 0;
4
+ exports.__PLACEHOLDER__ = 0;
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "quidproquo-testing",
3
+ "version": "0.0.172",
4
+ "description": "",
5
+ "main": "./lib/commonjs/index.js",
6
+ "types": "./lib/commonjs/index.d.ts",
7
+ "files": [
8
+ "lib/**/*"
9
+ ],
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1",
12
+ "clean": "npx rimraf lib",
13
+ "build": "npm run clean && tsc -p tsconfig.commonjs.json",
14
+ "watch": "tsc -p tsconfig.commonjs.json -w"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/joe-coady/quidproquo.git"
19
+ },
20
+ "keywords": [],
21
+ "author": "",
22
+ "license": "MIT",
23
+ "bugs": {
24
+ "url": "https://github.com/joe-coady/quidproquo/issues"
25
+ },
26
+ "homepage": "https://github.com/joe-coady/quidproquo#readme",
27
+ "devDependencies": {
28
+ "quidproquo-tsconfig": "0.0.172",
29
+ "typescript": "^4.9.3"
30
+ }
31
+ }