RubyGems
npm
PyPI
Organizations
Log in
Sign up
npm
vue-metrics
Versions diffs
0.0.1
vue-metrics 0.0.1
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (2)
hide
show
package/main.js
+7
-0
package/package.json
+12
-0
package/main.js
ADDED
Viewed
@@ -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
Viewed
@@ -0,0 +1,12 @@
1
+
{
2
+
"name": "vue-metrics",
3
+
"version": "0.0.1",
4
+
"description": "",
5
+
"main": "index.js",
6
+
"keywords": [],
7
+
"author": "NavidTM",
8
+
"license": "ISC",
9
+
"scripts": {
10
+
"test": "echo \"Error: no test specified\" && exit 1"
11
+
}
12
+
}