@dioxide-js/misc
Advanced tools
Comparing version 0.0.8 to 0.0.9
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.0.9](https://github.com/duiyuan/misc/compare/v0.0.8...v0.0.9) (2022-06-01) | ||
### Features | ||
* support ed25519 valid address ([512e37a](https://github.com/duiyuan/misc/commit/512e37ad116a23012742e3c5bef7e021b0adc5b9)) | ||
### [0.0.8](https://github.com/duiyuan/misc/compare/v0.0.7...v0.0.8) (2022-06-01) | ||
@@ -7,0 +14,0 @@ |
@@ -22,3 +22,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.dataview = exports.buffer = exports.date = exports.string = void 0; | ||
exports.address = exports.dataview = exports.buffer = exports.date = exports.string = void 0; | ||
var string = __importStar(require("./string")); | ||
@@ -32,2 +32,4 @@ exports.string = string; | ||
exports.dataview = dataview; | ||
var address = __importStar(require("./address")); | ||
exports.address = address; | ||
//# sourceMappingURL=index.js.map |
@@ -5,2 +5,3 @@ import * as string from './string'; | ||
import * as dataview from './dataview'; | ||
export { string, date, buffer, dataview }; | ||
import * as address from './address'; | ||
export { string, date, buffer, dataview, address }; |
{ | ||
"name": "@dioxide-js/misc", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "Simple misc", | ||
@@ -33,4 +33,3 @@ "keywords": [], | ||
"test:prod": "npm run lint && npm run test -- --no-cache", | ||
"prepare": "husky install", | ||
"test": "jest --coverage" | ||
"prepare": "husky install" | ||
}, | ||
@@ -44,21 +43,2 @@ "lint-staged": { | ||
}, | ||
"jest": { | ||
"transform": { | ||
".(ts|tsx)": "ts-jest" | ||
}, | ||
"testEnvironment": "node", | ||
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js" | ||
], | ||
"coveragePathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/test/" | ||
], | ||
"collectCoverageFrom": [ | ||
"src/*.{js,ts}" | ||
] | ||
}, | ||
"commitlint": { | ||
@@ -70,2 +50,5 @@ "extends": [ | ||
"devDependencies": { | ||
"@babel/core": "^7.18.2", | ||
"@babel/preset-env": "^7.18.2", | ||
"@babel/preset-typescript": "^7.17.12", | ||
"@commitlint/cli": "^16.2.4", | ||
@@ -79,2 +62,3 @@ "@commitlint/config-conventional": "^16.2.4", | ||
"@typescript-eslint/parser": "^5.21.0", | ||
"babel-jest": "^28.1.0", | ||
"colors": "^1.3.2", | ||
@@ -87,3 +71,3 @@ "cross-env": "^5.2.0", | ||
"husky": "^7.0.0", | ||
"jest": "^23.6.0", | ||
"jest": "^28.1.0", | ||
"jest-config": "^23.6.0", | ||
@@ -101,3 +85,2 @@ "lint-staged": "^8.0.0", | ||
"shelljs": "^0.8.3", | ||
"ts-jest": "^23.10.2", | ||
"ts-node": "^7.0.1", | ||
@@ -107,5 +90,11 @@ "typescript": "^4.3.2" | ||
"dependencies": { | ||
"base32-decode": "^1.0.0", | ||
"base32-encode": "^2.0.0", | ||
"base64-arraybuffer": "^1.0.2", | ||
"crc-32": "^1.2.2", | ||
"moment-mini": "^2.24.0" | ||
}, | ||
"resolutions": { | ||
"jest-environment-jsdom": "27.4.6" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
611355
26
2235
5
34
+ Addedbase32-decode@^1.0.0
+ Addedbase32-encode@^2.0.0
+ Addedcrc-32@^1.2.2
+ Addedbase32-decode@1.0.0(transitive)
+ Addedbase32-encode@2.0.0(transitive)
+ Addedcrc-32@1.2.2(transitive)
+ Addedto-data-view@2.0.0(transitive)