@b-jones-rfd/qualtrics-api-tasks 0.0.4

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/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ # @b-jones-rfd/qualtrics-api-tasks
2
+
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - cbceca7: Update changeset config
8
+
9
+ ## 0.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 00a3792: Publish to github
14
+
15
+ ## 0.0.2
16
+
17
+ ### Patch Changes
18
+
19
+ - f9398a9: Initial commit
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 B-Jones-RFD
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # qualtrics-api-tasks
2
+ Helpers to perform common tasks using the Qualtrics API
@@ -0,0 +1,3 @@
1
+ declare const hello: () => void;
2
+
3
+ export { hello };
@@ -0,0 +1,3 @@
1
+ declare const hello: () => void;
2
+
3
+ export { hello };
package/dist/index.js ADDED
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ hello: () => hello
24
+ });
25
+ module.exports = __toCommonJS(src_exports);
26
+ var hello = () => {
27
+ console.log("Nothing to see here!");
28
+ };
29
+ // Annotate the CommonJS export names for ESM import in node:
30
+ 0 && (module.exports = {
31
+ hello
32
+ });
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ // src/index.ts
2
+ var hello = () => {
3
+ console.log("Nothing to see here!");
4
+ };
5
+ export {
6
+ hello
7
+ };
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@b-jones-rfd/qualtrics-api-tasks",
3
+ "version": "0.0.4",
4
+ "description": "Perform common tasks using the Qualtrics API",
5
+ "private": false,
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "keywords": [],
10
+ "author": "B-Jones-RFD",
11
+ "license": "MIT",
12
+ "devDependencies": {
13
+ "@changesets/cli": "^2.27.1",
14
+ "tsup": "^8.0.2",
15
+ "typescript": "^5.3.3",
16
+ "vitest": "^1.3.1"
17
+ },
18
+ "engines": {
19
+ "node": ">=18"
20
+ },
21
+ "scripts": {
22
+ "dev": "vitest",
23
+ "test": "vitest run",
24
+ "build": "tsup src/index.ts --format cjs,esm --dts",
25
+ "lint": "tsc",
26
+ "ci": "pnpm run lint && pnpm run test && pnpm run build",
27
+ "release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish"
28
+ }
29
+ }
@@ -0,0 +1,7 @@
1
+ import { describe, it, expect } from 'vitest'
2
+
3
+ describe('Validate Test Runner', () => {
4
+ it('tests are working', () => {
5
+ expect(1).toBe(1)
6
+ })
7
+ })