Files
codeql-action/node_modules/long/package.json
T

45 lines
900 B
JSON
Raw Normal View History

{
2020-05-12 12:11:25 +01:00
"name": "long",
2022-01-31 18:36:27 +00:00
"version": "5.2.0",
2020-05-12 12:11:25 +01:00
"author": "Daniel Wirtz <dcode@dcode.io>",
"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"
},
2020-05-12 12:11:25 +01:00
"keywords": [
2022-01-31 18:36:27 +00:00
"math",
"long",
"int64"
2020-05-12 12:11:25 +01:00
],
"license": "Apache-2.0",
2022-01-31 18:36:27 +00:00
"type": "module",
"main": "umd/index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.js",
"require": "./umd/index.js"
}
},
2020-05-12 12:11:25 +01:00
"scripts": {
2022-01-31 18:36:27 +00:00
"build": "esm2umd Long index.js > umd/index.js",
2020-05-12 12:11:25 +01:00
"test": "node tests"
},
"files": [
"index.js",
2022-01-31 18:36:27 +00:00
"index.d.ts",
"umd/index.js",
"umd/index.d.ts",
"umd/package.json",
"LICENSE",
2022-01-31 18:36:27 +00:00
"README.md"
],
"devDependencies": {
"esm2umd": "^0.2.0"
}
2022-02-24 17:03:29 +00:00
}