File size: 1,032 Bytes
c1b3a0c |
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 41 42 43 44 45 46 47 48 49 50 51 |
{
"name": "long",
"version": "5.2.3",
"author": "Daniel Wirtz <[email protected]>",
"description": "A Long class for representing a 64-bit two's-complement integer value.",
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/long.js.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/long.js/issues"
},
"keywords": [
"math",
"long",
"int64"
],
"license": "Apache-2.0",
"type": "module",
"main": "umd/index.js",
"types": "umd/index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./umd/index.d.ts",
"default": "./umd/index.js"
}
}
},
"scripts": {
"build": "esm2umd Long index.js > umd/index.js",
"test": "node tests"
},
"files": [
"index.js",
"index.d.ts",
"umd/index.js",
"umd/index.d.ts",
"umd/package.json",
"LICENSE",
"README.md"
],
"devDependencies": {
"esm2umd": "^0.2.1"
}
}
|