add enter functionality and resolve title show bug
This commit is contained in:
124
kitabcitab/node_modules/js-sdsl/package.json
generated
vendored
124
kitabcitab/node_modules/js-sdsl/package.json
generated
vendored
@@ -1,49 +1,43 @@
|
||||
{
|
||||
"name": "js-sdsl",
|
||||
"version": "4.2.0",
|
||||
"description": "javascript standard data structure library which benchmark against C++ STL",
|
||||
"main": "./dist/cjs/index.js",
|
||||
"module": "./dist/esm/index.js",
|
||||
"types": "./dist/esm/index.d.ts",
|
||||
"_args": [
|
||||
[
|
||||
"js-sdsl@4.2.0",
|
||||
"/home/ismail/Desktop/kitabcitab-frontend/kitabcitab"
|
||||
]
|
||||
],
|
||||
"_from": "js-sdsl@4.2.0",
|
||||
"_id": "js-sdsl@4.2.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==",
|
||||
"_location": "/js-sdsl",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "js-sdsl@4.2.0",
|
||||
"name": "js-sdsl",
|
||||
"escapedName": "js-sdsl",
|
||||
"rawSpec": "4.2.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "4.2.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz",
|
||||
"_spec": "4.2.0",
|
||||
"_where": "/home/ismail/Desktop/kitabcitab-frontend/kitabcitab",
|
||||
"author": {
|
||||
"name": "ZLY201",
|
||||
"email": "951711127@qq.com",
|
||||
"url": "https://github.com/js-sdsl/js-sdsl"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"homepage": "https://js-sdsl.org",
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/js-sdsl"
|
||||
},
|
||||
"scripts": {
|
||||
"setup": "rm -rf node_modules && yarn install",
|
||||
"dev": "ttsc --project tsconfig.dev.json --watch",
|
||||
"build": "gulp",
|
||||
"build:cjs": "gulp cjs",
|
||||
"build:esm": "gulp esm",
|
||||
"build:umd": "gulp umd",
|
||||
"build:umd:min": "yarn build:umd && gulp umd:min",
|
||||
"build:isolate": "gulp isolate",
|
||||
"build:all": "yarn build && yarn build:isolate",
|
||||
"test": "yarn test:unit && yarn test:chrome && yarn test:performance",
|
||||
"test:unit": "nyc ts-mocha --paths 'test/**/*.test.ts' --timeout 10000",
|
||||
"test:edge": "karma start --browsers Edge",
|
||||
"test:safari": "karma start --browsers SafariNative",
|
||||
"test:chrome": "karma start --browsers ChromeHeadless",
|
||||
"test:firefox": "karma start --browsers Firefox",
|
||||
"test:isolate": "yarn build:isolate && ts-mocha --paths 'test/IsolationTest/*.ts'",
|
||||
"test:performance": "gulp performance && node dist/performance/performance/index.js",
|
||||
"lint": "eslint --fix --color --cache --max-warnings=0 .",
|
||||
"generate": "typedoc src/index.ts --includeVersion --sort required-first --sort instance-first --sort source-order",
|
||||
"generate:dev": "yarn generate --watch",
|
||||
"prepare": "husky install"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,ts}": [
|
||||
"yarn lint"
|
||||
]
|
||||
"bugs": {
|
||||
"url": "https://github.com/js-sdsl/js-sdsl/issues",
|
||||
"email": "951711127@qq.com"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "javascript standard data structure library which benchmark against C++ STL",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.19.3",
|
||||
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
|
||||
@@ -119,17 +113,17 @@
|
||||
"typedoc-plugin-missing-exports": "^1.0.0",
|
||||
"typescript": "~4.7.4"
|
||||
},
|
||||
"repository": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/js-sdsl/js-sdsl.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"dist/cjs",
|
||||
"dist/esm",
|
||||
"dist/umd",
|
||||
"CHANGELOG.md"
|
||||
],
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/js-sdsl"
|
||||
},
|
||||
"homepage": "https://js-sdsl.org",
|
||||
"keywords": [
|
||||
"data",
|
||||
"structure",
|
||||
@@ -158,9 +152,43 @@
|
||||
"c++",
|
||||
"stl"
|
||||
],
|
||||
"bugs": {
|
||||
"email": "951711127@qq.com",
|
||||
"url": "https://github.com/js-sdsl/js-sdsl/issues"
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"*.{js,ts}": [
|
||||
"yarn lint"
|
||||
]
|
||||
},
|
||||
"dependencies": {}
|
||||
"main": "./dist/cjs/index.js",
|
||||
"module": "./dist/esm/index.js",
|
||||
"name": "js-sdsl",
|
||||
"repository": {
|
||||
"type": "github",
|
||||
"url": "git+https://github.com/js-sdsl/js-sdsl.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp",
|
||||
"build:all": "yarn build && yarn build:isolate",
|
||||
"build:cjs": "gulp cjs",
|
||||
"build:esm": "gulp esm",
|
||||
"build:isolate": "gulp isolate",
|
||||
"build:umd": "gulp umd",
|
||||
"build:umd:min": "yarn build:umd && gulp umd:min",
|
||||
"dev": "ttsc --project tsconfig.dev.json --watch",
|
||||
"generate": "typedoc src/index.ts --includeVersion --sort required-first --sort instance-first --sort source-order",
|
||||
"generate:dev": "yarn generate --watch",
|
||||
"lint": "eslint --fix --color --cache --max-warnings=0 .",
|
||||
"prepare": "husky install",
|
||||
"setup": "rm -rf node_modules && yarn install",
|
||||
"test": "yarn test:unit && yarn test:chrome && yarn test:performance",
|
||||
"test:chrome": "karma start --browsers ChromeHeadless",
|
||||
"test:edge": "karma start --browsers Edge",
|
||||
"test:firefox": "karma start --browsers Firefox",
|
||||
"test:isolate": "yarn build:isolate && ts-mocha --paths 'test/IsolationTest/*.ts'",
|
||||
"test:performance": "gulp performance && node dist/performance/performance/index.js",
|
||||
"test:safari": "karma start --browsers SafariNative",
|
||||
"test:unit": "nyc ts-mocha --paths 'test/**/*.test.ts' --timeout 10000"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"types": "./dist/esm/index.d.ts",
|
||||
"version": "4.2.0"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user