Fix NPM package.json not present in the repository

This commit is contained in:
Molkobain
2021-03-26 17:44:23 +01:00
parent fbd46609ff
commit 2e8c0346d3
7 changed files with 203 additions and 426 deletions

186
node_modules/tippy.js/package.json generated vendored
View File

@@ -1,43 +1,74 @@
{
"_from": "tippy.js",
"_id": "tippy.js@6.2.5",
"_inBundle": false,
"_integrity": "sha512-UIf8G99PMXGmdWPrr36s/DjQBdfxMPwzvPUXsxs3tDFDTZ1SgvKG+Jvt6RJ+aBqYL0oe/STxh3MNkCV3IWAKmw==",
"_location": "/tippy.js",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "tippy.js",
"name": "tippy.js",
"escapedName": "tippy.js",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
},
"_requiredBy": [
"#USER",
"/"
"name": "tippy.js",
"version": "6.2.5",
"description": "The complete tooltip, popover, dropdown, and menu solution for the web",
"main": "dist/tippy.cjs.js",
"module": "dist/tippy.esm.js",
"unpkg": "dist/tippy-bundle.umd.min.js",
"types": "index.d.ts",
"sideEffects": [
"**/*.css"
],
"_resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-6.2.5.tgz",
"_shasum": "5335e28228af5e22c524fe5e8a94654514f34b92",
"_spec": "tippy.js",
"_where": "c:\\wamp64\\apps\\itop\\dev-trunk",
"author": {
"name": "atomiks"
"author": "atomiks",
"contributors": [
"Brett Zamir"
],
"license": "MIT",
"bugs": "https://github.com/atomiks/tippyjs/issues",
"homepage": "https://atomiks.github.io/tippyjs/",
"keywords": [
"tooltip",
"popover",
"popper",
"dropdown",
"popup",
"tippy",
"tippy.js"
],
"files": [
"dist/",
"animations/",
"themes/",
"headless/",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atomiks/tippyjs.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=dev rollup -c .config/rollup.config.js --watch",
"build": "node build/index.js && rollup -c .config/rollup.config.js && bundlesize",
"build:visual": "cross-env NODE_ENV=test rollup -c .config/rollup.config.js",
"serve": "serve test/visual",
"test:dom": "jest unit integration --coverage",
"test:functional": "jest functional",
"test:types": "tsc && tsd",
"test": "yarn test:types && yarn test:dom && yarn test:functional",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write \"**/*.{js,ts,json,md,mdx,scss,css}\" --ignore-path .config/.prettierignore",
"clean": "rimraf dist/ themes/ animations/ coverage/ .devserver/ .cache/ ./index.d.ts",
"prepare": "yarn clean && yarn build"
},
"babel": {
"extends": "./.config/babel.config"
},
"jest": {
"preset": "./.config/jest.config"
},
"eslintConfig": {
"extends": "./.config/eslint.config"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
},
"browserslist": [
"> 0.5%",
"not dead",
"not safari < 8"
],
"bugs": {
"url": "https://github.com/atomiks/tippyjs/issues"
},
"bundleDependencies": false,
"bundlesize": [
{
"path": "dist/tippy-bundle.umd.min.js",
@@ -56,16 +87,22 @@
"maxSize": "5 kB"
}
],
"contributors": [
{
"name": "Brett Zamir"
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
],
"dependencies": {
"@popperjs/core": "^2.4.4"
},
"deprecated": false,
"description": "The complete tooltip, popover, dropdown, and menu solution for the web",
"lint-staged": {
"src/**/*.ts": [
"jest --findRelatedTests",
"eslint . --ext .ts,.js",
"git add"
],
"{build,src,test,website/src}/**/*.{ts,js,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
@@ -114,76 +151,7 @@
"tsd": "^0.11.0",
"typescript": "^3.7.5"
},
"eslintConfig": {
"extends": "./.config/eslint.config"
},
"files": [
"dist/",
"animations/",
"themes/",
"headless/",
"index.d.ts"
],
"homepage": "https://atomiks.github.io/tippyjs/",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "./.config/jest.config"
},
"keywords": [
"tooltip",
"popover",
"popper",
"dropdown",
"popup",
"tippy",
"tippy.js"
],
"license": "MIT",
"lint-staged": {
"src/**/*.ts": [
"jest --findRelatedTests",
"eslint . --ext .ts,.js",
"git add"
],
"{build,src,test,website/src}/**/*.{ts,js,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"main": "dist/tippy.cjs.js",
"module": "dist/tippy.esm.js",
"name": "tippy.js",
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomiks/tippyjs.git"
},
"scripts": {
"build": "node build/index.js && rollup -c .config/rollup.config.js && bundlesize",
"build:visual": "cross-env NODE_ENV=test rollup -c .config/rollup.config.js",
"clean": "rimraf dist/ themes/ animations/ coverage/ .devserver/ .cache/ ./index.d.ts",
"dev": "cross-env NODE_ENV=dev rollup -c .config/rollup.config.js --watch",
"format": "prettier --write \"**/*.{js,ts,json,md,mdx,scss,css}\" --ignore-path .config/.prettierignore",
"lint": "eslint . --ext .ts,.js",
"prepare": "yarn clean && yarn build",
"serve": "serve test/visual",
"test": "yarn test:types && yarn test:dom && yarn test:functional",
"test:dom": "jest unit integration --coverage",
"test:functional": "jest functional",
"test:types": "tsc && tsd"
},
"sideEffects": [
"**/*.css"
],
"types": "index.d.ts",
"unpkg": "dist/tippy-bundle.umd.min.js",
"version": "6.2.5"
"dependencies": {
"@popperjs/core": "^2.4.4"
}
}