- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
40 lines
825 B
JSON
40 lines
825 B
JSON
{
|
|
"name": "bn.js",
|
|
"version": "5.2.3",
|
|
"description": "Big number implementation in pure javascript",
|
|
"keywords": [
|
|
"BN",
|
|
"Big number",
|
|
"BigNum",
|
|
"Modulo",
|
|
"Montgomery"
|
|
],
|
|
"homepage": "https://github.com/indutny/bn.js",
|
|
"bugs": {
|
|
"url": "https://github.com/indutny/bn.js/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:indutny/bn.js"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Fedor Indutny <fedor@indutny.com>",
|
|
"files": [
|
|
"lib/bn.js"
|
|
],
|
|
"main": "lib/bn.js",
|
|
"browser": {
|
|
"buffer": false
|
|
},
|
|
"scripts": {
|
|
"lint": "standardx",
|
|
"test": "npm run lint && npm run unit",
|
|
"unit": "mocha --reporter=spec test/*-test.js"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-plugin-es5": "^1.5.0",
|
|
"mocha": "^8.3.0",
|
|
"standardx": "^7.0.0"
|
|
}
|
|
}
|