Update checked-in dependencies
This commit is contained in:
parent
ba2b46d53e
commit
392931027a
12 changed files with 3858 additions and 1790 deletions
36
node_modules/long/package.json
generated
vendored
36
node_modules/long/package.json
generated
vendored
|
|
@ -1,9 +1,8 @@
|
|||
{
|
||||
"name": "long",
|
||||
"version": "4.0.0",
|
||||
"version": "5.2.0",
|
||||
"author": "Daniel Wirtz <dcode@dcode.io>",
|
||||
"description": "A Long class for representing a 64-bit two's-complement integer value.",
|
||||
"main": "src/long.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/dcodeIO/long.js.git"
|
||||
|
|
@ -12,23 +11,34 @@
|
|||
"url": "https://github.com/dcodeIO/long.js/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"math"
|
||||
"math",
|
||||
"long",
|
||||
"int64"
|
||||
],
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"webpack": "^3.10.0"
|
||||
},
|
||||
"license": "Apache-2.0",
|
||||
"type": "module",
|
||||
"main": "umd/index.js",
|
||||
"types": "index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.js",
|
||||
"require": "./umd/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"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",
|
||||
"src/long.js",
|
||||
"dist/long.js",
|
||||
"dist/long.js.map"
|
||||
]
|
||||
"README.md"
|
||||
],
|
||||
"devDependencies": {
|
||||
"esm2umd": "^0.2.0"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue