kool-koala 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 (3) hide show
  1. package/index.js +16 -0
  2. package/index.js.map +1 -0
  3. package/package.json +56 -0
package/index.js ADDED
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.printKoalaArt = printKoalaArt;
4
+ function printKoalaArt() {
5
+ const koalaAscii = `
6
+ (\__/)
7
+ (o.o ) KOOL KOALA
8
+ (> < )
9
+ `;
10
+ console.log(koalaAscii);
11
+ }
12
+ if (require.main === module) {
13
+ printKoalaArt();
14
+ }
15
+
16
+ //# sourceMappingURL=index.js.map
package/index.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/../src/index.ts"],"names":[],"mappings":";;AAAA,sCAOC;AAPD,SAAgB,aAAa;IAC3B,MAAM,UAAU,GAAG;;;;GAIlB,CAAC;IACF,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;AAC1B,CAAC;AAED,IAAI,OAAO,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;IAC5B,aAAa,EAAE,CAAC;AAClB,CAAC","file":"index.js","sourcesContent":["export function printKoalaArt(): void {\n const koalaAscii = `\n (\\__/)\n (o.o ) KOOL KOALA\n (> < )\n `;\n console.log(koalaAscii);\n}\n\nif (require.main === module) {\n printKoalaArt();\n}\n"]}
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "kool-koala",
3
+ "version": "1.0.0",
4
+ "description": "Full-stack framework to create NodeJS applications on server side and Angular applications on the client side with ease.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "gulp": "gulp",
8
+ "dev": "gulp --gulpfile build/gulpfile.ts dev",
9
+ "compile": "gulp --gulpfile build/gulpfile.ts compile",
10
+ "compile-release": "gulp --gulpfile build/gulpfile.ts compile-release",
11
+ "test": "echo \"\u001b[33mTests have to be specified...\u001b[0m\" && exit 0",
12
+ "prepare": "husky"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/kukko/kool-koala.git"
17
+ },
18
+ "author": "kukko",
19
+ "license": "ISC",
20
+ "bugs": {
21
+ "url": "https://github.com/kukko/kool-koala/issues"
22
+ },
23
+ "homepage": "https://github.com/kukko/kool-koala#readme",
24
+ "devDependencies": {
25
+ "@commitlint/cli": "^19.8.0",
26
+ "@commitlint/config-conventional": "^19.8.0",
27
+ "@semantic-release/changelog": "^6.0.3",
28
+ "@semantic-release/commit-analyzer": "^13.0.1",
29
+ "@semantic-release/git": "^10.0.1",
30
+ "@semantic-release/github": "^11.0.1",
31
+ "@semantic-release/npm": "^12.0.1",
32
+ "@semantic-release/release-notes-generator": "^14.0.3",
33
+ "@types/gulp": "^4.0.17",
34
+ "@types/gulp-nodemon": "^0.0.37",
35
+ "@types/gulp-rename": "^2.0.6",
36
+ "@types/gulp-sourcemaps": "^0.0.38",
37
+ "@types/yargs": "^17.0.33",
38
+ "commitizen": "^4.3.1",
39
+ "cz-git": "^1.11.1",
40
+ "gulp": "^5.0.0",
41
+ "gulp-nodemon": "^2.5.0",
42
+ "gulp-rename": "^2.0.0",
43
+ "gulp-sourcemaps": "^3.0.0",
44
+ "gulp-typescript": "^6.0.0-alpha.1",
45
+ "husky": "^9.1.7",
46
+ "rimraf": "^6.0.1",
47
+ "semantic-release": "^24.2.3",
48
+ "ts-node": "^10.9.2",
49
+ "yargs": "^17.7.2"
50
+ },
51
+ "config": {
52
+ "commitizen": {
53
+ "path": "./node_modules/cz-git"
54
+ }
55
+ }
56
+ }