| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
 | | { |  |   "name": "@jridgewell/set-array", |  |   "version": "1.1.2", |  |   "description": "Like a Set, but provides the index of the `key` in the backing array", |  |   "keywords": [], |  |   "author": "Justin Ridgewell <justin@ridgewell.name>", |  |   "license": "MIT", |  |   "repository": "https://github.com/jridgewell/set-array", |  |   "main": "dist/set-array.umd.js", |  |   "module": "dist/set-array.mjs", |  |   "typings": "dist/types/set-array.d.ts", |  |   "exports": { |  |     ".": [ |  |       { |  |         "types": "./dist/types/set-array.d.ts", |  |         "browser": "./dist/set-array.umd.js", |  |         "require": "./dist/set-array.umd.js", |  |         "import": "./dist/set-array.mjs" |  |       }, |  |       "./dist/set-array.umd.js" |  |     ], |  |     "./package.json": "./package.json" |  |   }, |  |   "files": [ |  |     "dist", |  |     "src" |  |   ], |  |   "engines": { |  |     "node": ">=6.0.0" |  |   }, |  |   "scripts": { |  |     "prebuild": "rm -rf dist", |  |     "build": "run-s -n build:*", |  |     "build:rollup": "rollup -c rollup.config.js", |  |     "build:ts": "tsc --project tsconfig.build.json", |  |     "lint": "run-s -n lint:*", |  |     "lint:prettier": "npm run test:lint:prettier -- --write", |  |     "lint:ts": "npm run test:lint:ts -- --fix", |  |     "pretest": "run-s build:rollup", |  |     "test": "run-s -n test:lint test:only", |  |     "test:debug": "mocha --inspect-brk", |  |     "test:lint": "run-s -n test:lint:*", |  |     "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'", |  |     "test:lint:ts": "eslint '{src,test}/**/*.ts'", |  |     "test:only": "mocha", |  |     "test:coverage": "c8 mocha", |  |     "test:watch": "mocha --watch", |  |     "prepublishOnly": "npm run preversion", |  |     "preversion": "run-s test build" |  |   }, |  |   "devDependencies": { |  |     "@rollup/plugin-typescript": "8.3.0", |  |     "@types/mocha": "9.1.1", |  |     "@types/node": "17.0.29", |  |     "@typescript-eslint/eslint-plugin": "5.10.0", |  |     "@typescript-eslint/parser": "5.10.0", |  |     "c8": "7.11.0", |  |     "eslint": "8.7.0", |  |     "eslint-config-prettier": "8.3.0", |  |     "mocha": "9.2.0", |  |     "npm-run-all": "4.1.5", |  |     "prettier": "2.5.1", |  |     "rollup": "2.66.0", |  |     "typescript": "4.5.5" |  |   } |  | } | 
 |