hnt_digest_issue_nfe_library 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.
- package/.babelrc +5 -0
- package/lib/index.js +13 -0
- package/package.json +18 -0
package/lib/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var pck = require('../package.json');
|
|
8
|
+
var version = function version() {
|
|
9
|
+
return pck.version;
|
|
10
|
+
};
|
|
11
|
+
var _default = exports["default"] = {
|
|
12
|
+
version: version
|
|
13
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hnt_digest_issue_nfe_library",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Read NFs from Sefaz by access key",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "babel src -d lib"
|
|
8
|
+
},
|
|
9
|
+
"devDependencies": {
|
|
10
|
+
"@babel/cli": "^7.24.1",
|
|
11
|
+
"@babel/core": "^7.24.3",
|
|
12
|
+
"@babel/preset-env": "^7.24.3",
|
|
13
|
+
"babel-jest": "^29.7.0",
|
|
14
|
+
"jest": "^29.7.0"
|
|
15
|
+
},
|
|
16
|
+
"author": "Pepe",
|
|
17
|
+
"license": "ISC"
|
|
18
|
+
}
|