@mindline/sync 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/README.md +15 -0
  2. package/index.js +7 -0
  3. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Introduction
2
+ sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.
3
+
4
+ # Getting Started
5
+ TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
6
+ 1. Installation process
7
+ 2. Software dependencies
8
+ 3. Latest releases
9
+ 4. API references
10
+
11
+ # Build and Test
12
+ TODO: Describe and show how to build your code and run the tests. Jest?
13
+
14
+ # Contribute
15
+ TODO: Explain how other users and developers can contribute to make your code better.
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ //index.js
2
+
3
+ function helloNpm() {
4
+ return "hello NPM"
5
+ }
6
+
7
+ module.exports = helloNpm
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@mindline/sync",
3
+ "version": "1.0.0",
4
+ "description": "sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC"
12
+ }