add enter functionality and resolve title show bug
This commit is contained in:
117
kitabcitab/node_modules/tsconfig-paths/package.json
generated
vendored
117
kitabcitab/node_modules/tsconfig-paths/package.json
generated
vendored
@@ -1,21 +1,45 @@
|
||||
{
|
||||
"name": "tsconfig-paths",
|
||||
"version": "3.14.1",
|
||||
"description": "Load node modules according to tsconfig paths, in run-time or via API.",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"author": "Jonas Kello",
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/dividab/tsconfig-paths",
|
||||
"files": [
|
||||
"/src",
|
||||
"/lib",
|
||||
"register.js",
|
||||
"package.json",
|
||||
"CHANGELOG.md",
|
||||
"LICENSE",
|
||||
"README.md"
|
||||
"_args": [
|
||||
[
|
||||
"tsconfig-paths@3.14.1",
|
||||
"/home/ismail/Desktop/kitabcitab-frontend/kitabcitab"
|
||||
]
|
||||
],
|
||||
"_from": "tsconfig-paths@3.14.1",
|
||||
"_id": "tsconfig-paths@3.14.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==",
|
||||
"_location": "/tsconfig-paths",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "tsconfig-paths@3.14.1",
|
||||
"name": "tsconfig-paths",
|
||||
"escapedName": "tsconfig-paths",
|
||||
"rawSpec": "3.14.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.14.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/eslint-plugin-import"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz",
|
||||
"_spec": "3.14.1",
|
||||
"_where": "/home/ismail/Desktop/kitabcitab-frontend/kitabcitab",
|
||||
"author": {
|
||||
"name": "Jonas Kello"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/dividab/tsconfig-paths/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/json5": "^0.0.29",
|
||||
"json5": "^1.0.1",
|
||||
"minimist": "^1.2.6",
|
||||
"strip-bom": "^3.0.0"
|
||||
},
|
||||
"description": "Load node modules according to tsconfig paths, in run-time or via API.",
|
||||
"devDependencies": {
|
||||
"@types/jest": "^27.0.3",
|
||||
"@types/minimist": "^1.2.2",
|
||||
@@ -32,26 +56,22 @@
|
||||
"tslint": "^5.8.0",
|
||||
"typescript": "^4.5.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/json5": "^0.0.29",
|
||||
"json5": "^1.0.1",
|
||||
"minimist": "^1.2.6",
|
||||
"strip-bom": "^3.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "cd src && ts-node index.ts",
|
||||
"example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
|
||||
"example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
|
||||
"example:api": "cd example/api && ts-node main.ts",
|
||||
"example:perf": "cd example/perf && ts-node main.ts",
|
||||
"test": "jest",
|
||||
"test-coverage": "jest --coverage",
|
||||
"build": "rimraf lib && tsc -p .",
|
||||
"lint": "tslint './{src,tests}/**/*.ts{,x}'",
|
||||
"verify": "yarn build && yarn lint && yarn test-coverage",
|
||||
"preversion": "yarn verify",
|
||||
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
|
||||
"files": [
|
||||
"/src",
|
||||
"/lib",
|
||||
"register.js",
|
||||
"package.json",
|
||||
"CHANGELOG.md",
|
||||
"LICENSE",
|
||||
"README.md"
|
||||
],
|
||||
"homepage": "https://github.com/dividab/tsconfig-paths#readme",
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
}
|
||||
},
|
||||
"license": "MIT",
|
||||
"lint-staged": {
|
||||
"*.{ts,tsx}": "tslint",
|
||||
"*.{ts,tsx,json,css}": [
|
||||
@@ -59,9 +79,26 @@
|
||||
"git add"
|
||||
]
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
}
|
||||
}
|
||||
"main": "lib/index.js",
|
||||
"name": "tsconfig-paths",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/dividab/tsconfig-paths.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf lib && tsc -p .",
|
||||
"example:api": "cd example/api && ts-node main.ts",
|
||||
"example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
|
||||
"example:perf": "cd example/perf && ts-node main.ts",
|
||||
"example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
|
||||
"lint": "tslint './{src,tests}/**/*.ts{,x}'",
|
||||
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
|
||||
"preversion": "yarn verify",
|
||||
"start": "cd src && ts-node index.ts",
|
||||
"test": "jest",
|
||||
"test-coverage": "jest --coverage",
|
||||
"verify": "yarn build && yarn lint && yarn test-coverage"
|
||||
},
|
||||
"types": "lib/index.d.ts",
|
||||
"version": "3.14.1"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user