gst-common 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 +1 -0
  2. package/index.js +3 -0
  3. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # gst-common
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export const test = () => {
2
+ return "hello world"
3
+ }
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "gst-common",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "description": "store all common variables that we need",
6
+ "main": "index.js",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/anhtu16122000/gst-common.git"
13
+ },
14
+ "keywords": [
15
+ "gst-common"
16
+ ],
17
+ "author": "anhtu-pro",
18
+ "license": "ISC",
19
+ "bugs": {
20
+ "url": "https://github.com/anhtu16122000/gst-common/issues"
21
+ },
22
+ "homepage": "https://github.com/anhtu16122000/gst-common#readme"
23
+ }