package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "_args": [
  3. [
  4. "@jridgewell/set-array@1.1.2",
  5. "/Users/mac/projects/mime/mine"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "@jridgewell/set-array@1.1.2",
  10. "_id": "@jridgewell/set-array@1.1.2",
  11. "_inBundle": false,
  12. "_integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
  13. "_location": "/@jridgewell/set-array",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "@jridgewell/set-array@1.1.2",
  19. "name": "@jridgewell/set-array",
  20. "escapedName": "@jridgewell%2fset-array",
  21. "scope": "@jridgewell",
  22. "rawSpec": "1.1.2",
  23. "saveSpec": null,
  24. "fetchSpec": "1.1.2"
  25. },
  26. "_requiredBy": [
  27. "/@jridgewell/gen-mapping"
  28. ],
  29. "_resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz",
  30. "_spec": "1.1.2",
  31. "_where": "/Users/mac/projects/mime/mine",
  32. "author": {
  33. "name": "Justin Ridgewell",
  34. "email": "justin@ridgewell.name"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/jridgewell/set-array/issues"
  38. },
  39. "description": "Like a Set, but provides the index of the `key` in the backing array",
  40. "devDependencies": {
  41. "@rollup/plugin-typescript": "8.3.0",
  42. "@types/mocha": "9.1.1",
  43. "@types/node": "17.0.29",
  44. "@typescript-eslint/eslint-plugin": "5.10.0",
  45. "@typescript-eslint/parser": "5.10.0",
  46. "c8": "7.11.0",
  47. "eslint": "8.7.0",
  48. "eslint-config-prettier": "8.3.0",
  49. "mocha": "9.2.0",
  50. "npm-run-all": "4.1.5",
  51. "prettier": "2.5.1",
  52. "rollup": "2.66.0",
  53. "typescript": "4.5.5"
  54. },
  55. "engines": {
  56. "node": ">=6.0.0"
  57. },
  58. "exports": {
  59. ".": [
  60. {
  61. "types": "./dist/types/set-array.d.ts",
  62. "browser": "./dist/set-array.umd.js",
  63. "require": "./dist/set-array.umd.js",
  64. "import": "./dist/set-array.mjs"
  65. },
  66. "./dist/set-array.umd.js"
  67. ],
  68. "./package.json": "./package.json"
  69. },
  70. "files": [
  71. "dist",
  72. "src"
  73. ],
  74. "homepage": "https://github.com/jridgewell/set-array#readme",
  75. "keywords": [],
  76. "license": "MIT",
  77. "main": "dist/set-array.umd.js",
  78. "module": "dist/set-array.mjs",
  79. "name": "@jridgewell/set-array",
  80. "repository": {
  81. "type": "git",
  82. "url": "git+https://github.com/jridgewell/set-array.git"
  83. },
  84. "scripts": {
  85. "build": "run-s -n build:*",
  86. "build:rollup": "rollup -c rollup.config.js",
  87. "build:ts": "tsc --project tsconfig.build.json",
  88. "lint": "run-s -n lint:*",
  89. "lint:prettier": "npm run test:lint:prettier -- --write",
  90. "lint:ts": "npm run test:lint:ts -- --fix",
  91. "prebuild": "rm -rf dist",
  92. "prepublishOnly": "npm run preversion",
  93. "pretest": "run-s build:rollup",
  94. "preversion": "run-s test build",
  95. "test": "run-s -n test:lint test:only",
  96. "test:coverage": "c8 mocha",
  97. "test:debug": "mocha --inspect-brk",
  98. "test:lint": "run-s -n test:lint:*",
  99. "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",
  100. "test:lint:ts": "eslint '{src,test}/**/*.ts'",
  101. "test:only": "mocha",
  102. "test:watch": "mocha --watch"
  103. },
  104. "typings": "dist/types/set-array.d.ts",
  105. "version": "1.1.2"
  106. }