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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.0 KiB
JSON
Raw Normal View History

{
2020-05-12 12:11:25 +01:00
"name": "long",
2023-07-13 09:09:17 +00:00
"version": "5.2.3",
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",
2023-07-13 09:09:17 +00:00
"types": "umd/index.d.ts",
2022-01-31 18:36:27 +00:00
"exports": {
".": {
2023-07-13 09:09:17 +00:00
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./umd/index.d.ts",
"default": "./umd/index.js"
}
2022-01-31 18:36:27 +00:00
}
},
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": {
2023-07-13 09:09:17 +00:00
"esm2umd": "^0.2.1"
2022-01-31 18:36:27 +00:00
}
2022-02-24 17:03:29 +00:00
}