Aktueller Stand
This commit is contained in:
40
backend/node_modules/mnemonist/package.json
generated
vendored
40
backend/node_modules/mnemonist/package.json
generated
vendored
@@ -1,21 +1,39 @@
|
||||
{
|
||||
"name": "mnemonist",
|
||||
"version": "0.39.6",
|
||||
"version": "0.40.3",
|
||||
"description": "Curated collection of data structures for the JavaScript/TypeScript.",
|
||||
"scripts": {
|
||||
"lint": "eslint --cache ./*.js ./utils ./test",
|
||||
"lint:fix": "eslint --cache --fix ./*.js ./utils ./test",
|
||||
"prepublishOnly": "npm run lint && npm test && npm run test:types",
|
||||
"lint": "eslint --cache --ext .js,.mjs ./*.js ./*.mjs ./utils ./test",
|
||||
"lint:fix": "eslint --cache --fix --ext .js,.mjs ./*.js ./*.mjs ./utils ./test",
|
||||
"prepublishOnly": "npm run lint && npm test && npm run test:exports",
|
||||
"test": "mocha",
|
||||
"test:types": "tsc --target es2015 --noEmit --noImplicitAny --noImplicitReturns ./test/types.ts"
|
||||
"test:exports": "cd test/exports && npm i && npm run test"
|
||||
},
|
||||
"main": "./index.js",
|
||||
"module": "./index.mjs",
|
||||
"types": "./index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./index.d.ts",
|
||||
"require": "./index.js",
|
||||
"import": "./index.mjs"
|
||||
},
|
||||
"./*": {
|
||||
"types": "./*.d.ts",
|
||||
"require": "./*.js"
|
||||
},
|
||||
"./*.js": {
|
||||
"types": "./*.d.ts",
|
||||
"require": "./*.js"
|
||||
}
|
||||
},
|
||||
"sideEffects": false,
|
||||
"files": [
|
||||
"sort",
|
||||
"utils",
|
||||
"*.d.ts",
|
||||
"*.js"
|
||||
"*.js",
|
||||
"*.mjs"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -73,12 +91,12 @@
|
||||
},
|
||||
"homepage": "https://github.com/yomguithereal/mnemonist#readme",
|
||||
"dependencies": {
|
||||
"obliterator": "^2.0.1"
|
||||
"obliterator": "^2.0.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@yomguithereal/eslint-config": "^4.4.0",
|
||||
"asciitree": "^1.0.2",
|
||||
"damerau-levenshtein": "^1.0.7",
|
||||
"damerau-levenshtein": "^1.0.8",
|
||||
"eslint": "^8.2.0",
|
||||
"leven": "^3.1.0",
|
||||
"lodash": "^4.17.21",
|
||||
@@ -86,8 +104,7 @@
|
||||
"mocha": "^9.1.3",
|
||||
"pandemonium": "^2.0.0",
|
||||
"seedrandom": "^3.0.5",
|
||||
"static-kdtree": "^1.0.2",
|
||||
"typescript": "^4.5.2"
|
||||
"static-kdtree": "^1.0.2"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "@yomguithereal/eslint-config",
|
||||
@@ -95,7 +112,8 @@
|
||||
"ecmaVersion": 6,
|
||||
"ecmaFeatures": {
|
||||
"forOf": true
|
||||
}
|
||||
},
|
||||
"sourceType": "module"
|
||||
},
|
||||
"rules": {
|
||||
"no-new": 0
|
||||
|
||||
Reference in New Issue
Block a user