scroller_super_top 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +14 -0
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ function helloNPM(){
2
+ return "helloNPM"
3
+ }
4
+
5
+ module.exports = helloNPM
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "scroller_super_top",
3
+ "version": "1.0.0",
4
+ "description": "custom top scroller",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "scroller"
11
+ ],
12
+ "author": "tadase",
13
+ "license": "ISC"
14
+ }