1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| {
| "name": "bn.js",
| "version": "4.12.2",
| "description": "Big number implementation in pure javascript",
| "main": "lib/bn.js",
| "scripts": {
| "lint": "semistandard",
| "unit": "mocha --reporter=spec test/*-test.js",
| "test": "npm run lint && npm run unit"
| },
| "repository": {
| "type": "git",
| "url": "git@github.com:indutny/bn.js"
| },
| "keywords": [
| "BN",
| "BigNum",
| "Big number",
| "Modulo",
| "Montgomery"
| ],
| "author": "Fedor Indutny <fedor@indutny.com>",
| "license": "MIT",
| "bugs": {
| "url": "https://github.com/indutny/bn.js/issues"
| },
| "homepage": "https://github.com/indutny/bn.js",
| "browser": {
| "buffer": false
| },
| "devDependencies": {
| "istanbul": "^0.3.5",
| "mocha": "^2.1.0",
| "semistandard": "^7.0.4"
| }
|
| ,"_resolved": "https://registry.npmmirror.com/bn.js/-/bn.js-4.12.2.tgz"
| ,"_integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="
| ,"_from": "bn.js@^4.0.0"
| }
|
|