tiro-notes 1.0.8

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/cli.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ const testlog = require('./index.js');
3
+ testlog();
package/index.html ADDED
File without changes
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ function testlog () {
2
+ console.log("hello world npx");
3
+ }
4
+ module.exports = testlog;
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "tiro-notes",
3
+ "version": "1.0.8",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "bin": "cli.js",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "publish": "npm publish --access public"
10
+ },
11
+ "author": "",
12
+ "license": "ISC"
13
+ }
package/package.json~ ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@tiro/test-public",
3
+ "version": "1.0.7",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "bin": "cli.js",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "publish": "npm publish --access public"
10
+ },
11
+ "author": "",
12
+ "license": "ISC"
13
+ }