add enter functionality and resolve title show bug
This commit is contained in:
162
kitabcitab/node_modules/yaml/package.json
generated
vendored
162
kitabcitab/node_modules/yaml/package.json
generated
vendored
@@ -1,27 +1,37 @@
|
||||
{
|
||||
"name": "yaml",
|
||||
"version": "1.10.2",
|
||||
"license": "ISC",
|
||||
"author": "Eemeli Aro <eemeli@gmail.com>",
|
||||
"repository": "github:eemeli/yaml",
|
||||
"description": "JavaScript parser and stringifier for YAML",
|
||||
"keywords": [
|
||||
"YAML",
|
||||
"parser",
|
||||
"stringifier"
|
||||
"_args": [
|
||||
[
|
||||
"yaml@1.10.2",
|
||||
"/home/ismail/Desktop/kitabcitab-frontend/kitabcitab"
|
||||
]
|
||||
],
|
||||
"homepage": "https://eemeli.org/yaml/v1/",
|
||||
"files": [
|
||||
"browser/",
|
||||
"dist/",
|
||||
"types/",
|
||||
"*.d.ts",
|
||||
"*.js",
|
||||
"*.mjs",
|
||||
"!*config.js"
|
||||
"_development": true,
|
||||
"_from": "yaml@1.10.2",
|
||||
"_id": "yaml@1.10.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
|
||||
"_location": "/yaml",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "yaml@1.10.2",
|
||||
"name": "yaml",
|
||||
"escapedName": "yaml",
|
||||
"rawSpec": "1.10.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.10.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/postcss-load-config"
|
||||
],
|
||||
"type": "commonjs",
|
||||
"main": "./index.js",
|
||||
"_resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
|
||||
"_spec": "1.10.2",
|
||||
"_where": "/home/ismail/Desktop/kitabcitab-frontend/kitabcitab",
|
||||
"author": {
|
||||
"name": "Eemeli Aro",
|
||||
"email": "eemeli@gmail.com"
|
||||
},
|
||||
"browser": {
|
||||
"./index.js": "./browser/index.js",
|
||||
"./map.js": "./browser/map.js",
|
||||
@@ -40,48 +50,11 @@
|
||||
"./util.js": "./browser/util.js",
|
||||
"./util.mjs": "./browser/util.js"
|
||||
},
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
"./parse-cst": "./parse-cst.js",
|
||||
"./types": [
|
||||
{
|
||||
"import": "./types.mjs"
|
||||
},
|
||||
"./types.js"
|
||||
],
|
||||
"./util": [
|
||||
{
|
||||
"import": "./util.mjs"
|
||||
},
|
||||
"./util.js"
|
||||
],
|
||||
"./": "./"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build:node && npm run build:browser",
|
||||
"build:browser": "rollup -c rollup.browser-config.js",
|
||||
"build:node": "rollup -c rollup.node-config.js",
|
||||
"clean": "git clean -fdxe node_modules",
|
||||
"lint": "eslint src/",
|
||||
"prettier": "prettier --write .",
|
||||
"start": "cross-env TRACE_LEVEL=log npm run build:node && node -i -e 'YAML=require(\".\")'",
|
||||
"test": "jest",
|
||||
"test:browsers": "cd playground && npm test",
|
||||
"test:dist": "npm run build:node && jest",
|
||||
"test:types": "tsc --lib ES2017 --noEmit tests/typings.ts",
|
||||
"docs:install": "cd docs-slate && bundle install",
|
||||
"docs:deploy": "cd docs-slate && ./deploy.sh",
|
||||
"docs": "cd docs-slate && bundle exec middleman server",
|
||||
"preversion": "npm test && npm run build",
|
||||
"prepublishOnly": "npm run clean && npm test && npm run build"
|
||||
},
|
||||
"browserslist": "> 0.5%, not dead",
|
||||
"prettier": {
|
||||
"arrowParens": "avoid",
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none"
|
||||
"bugs": {
|
||||
"url": "https://github.com/eemeli/yaml/issues"
|
||||
},
|
||||
"description": "JavaScript parser and stringifier for YAML",
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
||||
@@ -102,5 +75,70 @@
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 6"
|
||||
}
|
||||
},
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
"./parse-cst": "./parse-cst.js",
|
||||
"./types": [
|
||||
{
|
||||
"import": "./types.mjs"
|
||||
},
|
||||
"./types.js"
|
||||
],
|
||||
"./util": [
|
||||
{
|
||||
"import": "./util.mjs"
|
||||
},
|
||||
"./util.js"
|
||||
],
|
||||
"./": "./"
|
||||
},
|
||||
"files": [
|
||||
"browser/",
|
||||
"dist/",
|
||||
"types/",
|
||||
"*.d.ts",
|
||||
"*.js",
|
||||
"*.mjs",
|
||||
"!*config.js"
|
||||
],
|
||||
"homepage": "https://eemeli.org/yaml/v1/",
|
||||
"keywords": [
|
||||
"YAML",
|
||||
"parser",
|
||||
"stringifier"
|
||||
],
|
||||
"license": "ISC",
|
||||
"main": "./index.js",
|
||||
"name": "yaml",
|
||||
"prettier": {
|
||||
"arrowParens": "avoid",
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/eemeli/yaml.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run build:node && npm run build:browser",
|
||||
"build:browser": "rollup -c rollup.browser-config.js",
|
||||
"build:node": "rollup -c rollup.node-config.js",
|
||||
"clean": "git clean -fdxe node_modules",
|
||||
"docs": "cd docs-slate && bundle exec middleman server",
|
||||
"docs:deploy": "cd docs-slate && ./deploy.sh",
|
||||
"docs:install": "cd docs-slate && bundle install",
|
||||
"lint": "eslint src/",
|
||||
"prepublishOnly": "npm run clean && npm test && npm run build",
|
||||
"prettier": "prettier --write .",
|
||||
"preversion": "npm test && npm run build",
|
||||
"start": "cross-env TRACE_LEVEL=log npm run build:node && node -i -e 'YAML=require(\".\")'",
|
||||
"test": "jest",
|
||||
"test:browsers": "cd playground && npm test",
|
||||
"test:dist": "npm run build:node && jest",
|
||||
"test:types": "tsc --lib ES2017 --noEmit tests/typings.ts"
|
||||
},
|
||||
"type": "commonjs",
|
||||
"version": "1.10.2"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user