@wix/npmjs-exemplar-lib-5 1.0.0

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.
Files changed (2) hide show
  1. package/dist/index.js +11 -0
  2. package/package.json +31 -0
package/dist/index.js ADDED
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.meaningOfLife = meaningOfLife;
4
+ exports.whatIsTheQuestion = whatIsTheQuestion;
5
+ function meaningOfLife() {
6
+ return 42;
7
+ }
8
+ function whatIsTheQuestion() {
9
+ return "What do you get when you multiply six by nine?";
10
+ }
11
+ //# sourceMappingURL=index.js.map
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@wix/npmjs-exemplar-lib-5",
3
+ "version": "1.0.0",
4
+ "files": [
5
+ "./dist/*"
6
+ ],
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "license": "MIT",
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "test": "echo 'tests passed'"
13
+ },
14
+ "wix": {
15
+ "artifact": {
16
+ "groupId": "com.wixpress",
17
+ "artifactId": "npmjs-exemplar-lib-5"
18
+ },
19
+ "loki": {
20
+ "enable": true
21
+ }
22
+ },
23
+ "publishConfig": {
24
+ "registry": "https://registry.npmjs.org/",
25
+ "access": "public"
26
+ },
27
+ "devDependencies": {
28
+ "typescript": "^5.9.3"
29
+ },
30
+ "falconPackageHash": "6413107d27aa479a50ecd28ea3d9eb6f5fe7d65e03cc81b4d1c0fc88"
31
+ }