UNPKG

longfn

Version:

Rewritten variant of long.js that is entirely functional (and faster because of it)

61 lines (60 loc) 1.59 kB
{ "name": "longfn", "version": "1.3.1", "description": "Rewritten variant of long.js that is entirely functional (and faster because of it)", "main": "index.js", "type": "commonjs", "types": "index.d.ts", "exports": { ".": { "import": "./index.mjs", "require": "./index.js", "types": "./index.d.ts" } }, "scripts": { "lint": "standard", "types": "npx tsd", "prepare": "npm run test", "build": "esm2umd longfn index.mjs > index.js", "test": "npm run lint && npm run cover && npm run perf && npm run types", "perf": "npm run perf:wasm && npm run perf:js", "perf:wasm": "node test/perf.js", "perf:js": "node --noexpose_wasm test/perf.js", "unit": "npm run build; node test/index.js", "verbose": "env TEST_VERBOSE=1 npm run unit", "cover": "c8 --reporter=lcov --reporter=html npm run unit" }, "standard": { "ignore": ["index.js", "*.ts"] }, "keywords": [ "math", "long", "functional", "int64", "uint64" ], "author": "Martin Heidegger <martin.heidegger@gmail.com>", "license": "APL", "devDependencies": { "c8": "^7.11.0", "esm2umd": "^0.2.0", "long": "^5.2.0", "secure-shuffle": "^2.0.0", "standard": "^16.0.4", "tape": "^5.5.2", "tsd": "^0.19.1" }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/consento-org/longfn.git" }, "bugs": { "url": "https://github.com/consento-org/longfn/issues" }, "homepage": "https://github.com/consento-org/longfn#readme" }