package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "_from": "@rollup/pluginutils@^3.0.8",
  3. "_id": "@rollup/pluginutils@3.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
  6. "_location": "/@rollup/pluginutils",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "@rollup/pluginutils@^3.0.8",
  12. "name": "@rollup/pluginutils",
  13. "escapedName": "@rollup%2fpluginutils",
  14. "scope": "@rollup",
  15. "rawSpec": "^3.0.8",
  16. "saveSpec": null,
  17. "fetchSpec": "^3.0.8"
  18. },
  19. "_requiredBy": [
  20. "/@rollup/plugin-node-resolve",
  21. "/@rollup/plugin-replace"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
  24. "_shasum": "706b4524ee6dc8b103b3c995533e5ad680c02b9b",
  25. "_spec": "@rollup/pluginutils@^3.0.8",
  26. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\@rollup\\plugin-node-resolve",
  27. "author": {
  28. "name": "Rich Harris",
  29. "email": "richard.a.harris@gmail.com"
  30. },
  31. "ava": {
  32. "compileEnhancements": false,
  33. "extensions": [
  34. "ts"
  35. ],
  36. "require": [
  37. "ts-node/register"
  38. ],
  39. "files": [
  40. "!**/fixtures/**",
  41. "!**/helpers/**",
  42. "!**/recipes/**",
  43. "!**/types.ts"
  44. ]
  45. },
  46. "bugs": {
  47. "url": "https://github.com/rollup/plugins/issues"
  48. },
  49. "bundleDependencies": false,
  50. "dependencies": {
  51. "@types/estree": "0.0.39",
  52. "estree-walker": "^1.0.1",
  53. "picomatch": "^2.2.2"
  54. },
  55. "deprecated": false,
  56. "description": "A set of utility functions commonly used by Rollup plugins",
  57. "devDependencies": {
  58. "@rollup/plugin-commonjs": "^11.0.2",
  59. "@rollup/plugin-node-resolve": "^7.1.1",
  60. "@rollup/plugin-typescript": "^3.0.0",
  61. "@types/jest": "^24.9.0",
  62. "@types/node": "^12.12.25",
  63. "@types/picomatch": "^2.2.1",
  64. "typescript": "^3.7.5"
  65. },
  66. "engines": {
  67. "node": ">= 8.0.0"
  68. },
  69. "exports": {
  70. "require": "./dist/cjs/index.js",
  71. "import": "./dist/es/index.js"
  72. },
  73. "files": [
  74. "dist",
  75. "types",
  76. "README.md",
  77. "LICENSE"
  78. ],
  79. "homepage": "https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme",
  80. "keywords": [
  81. "rollup",
  82. "plugin",
  83. "utils"
  84. ],
  85. "license": "MIT",
  86. "main": "./dist/cjs/index.js",
  87. "module": "./dist/es/index.js",
  88. "name": "@rollup/pluginutils",
  89. "nyc": {
  90. "extension": [
  91. ".js",
  92. ".ts"
  93. ]
  94. },
  95. "peerDependencies": {
  96. "rollup": "^1.20.0||^2.0.0"
  97. },
  98. "publishConfig": {
  99. "access": "public"
  100. },
  101. "repository": {
  102. "type": "git",
  103. "url": "git+https://github.com/rollup/plugins.git"
  104. },
  105. "scripts": {
  106. "build": "rollup -c",
  107. "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
  108. "ci:lint": "pnpm run build && pnpm run lint",
  109. "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
  110. "ci:test": "pnpm run test -- --verbose",
  111. "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
  112. "lint:docs": "prettier --single-quote --write README.md",
  113. "lint:js": "eslint --fix --cache src test types --ext .js,.ts",
  114. "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
  115. "prebuild": "del-cli dist",
  116. "prepare": "pnpm run build",
  117. "prepublishOnly": "pnpm run lint && pnpm run build",
  118. "pretest": "pnpm run build -- --sourcemap",
  119. "test": "ava"
  120. },
  121. "type": "commonjs",
  122. "types": "types/index.d.ts",
  123. "version": "3.1.0"
  124. }