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.

59 lines
1.5 KiB
JSON
Raw Normal View History

{
2020-05-12 12:11:25 +01:00
"name": "long",
2025-04-21 18:01:41 +00:00
"version": "5.3.2",
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": {
2025-02-17 18:21:02 +00:00
"build": "node scripts/build.js",
"lint": "prettier --check .",
"format": "prettier --write .",
2025-02-10 17:23:18 +00:00
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "node tests",
2025-02-17 18:21:02 +00:00
"test:typescript": "tsc --project tests/typescript/tsconfig.esnext.json && tsc --project tests/typescript/tsconfig.nodenext.json && tsc --project tests/typescript/tsconfig.commonjs.json && tsc --project tests/typescript/tsconfig.global.json"
2020-05-12 12:11:25 +01:00
},
"files": [
"index.js",
2022-01-31 18:36:27 +00:00
"index.d.ts",
2025-02-17 18:21:02 +00:00
"types.d.ts",
2022-01-31 18:36:27 +00:00
"umd/index.js",
"umd/index.d.ts",
2025-02-17 18:21:02 +00:00
"umd/types.d.ts",
2022-01-31 18:36:27 +00:00
"umd/package.json",
"LICENSE",
2022-01-31 18:36:27 +00:00
"README.md"
],
"devDependencies": {
2025-04-21 18:01:41 +00:00
"esm2umd": "^0.3.1",
2025-02-17 18:21:02 +00:00
"prettier": "^3.5.0",
2025-02-10 17:23:18 +00:00
"typescript": "^5.7.3"
2022-01-31 18:36:27 +00:00
}
2022-02-24 17:03:29 +00:00
}