package.json
1 { 2 "name": "side-channel-map", 3 "version": "1.0.1", 4 "description": "Store information about any JS value in a side channel, using a Map", 5 "main": "index.js", 6 "exports": { 7 ".": "./index.js", 8 "./package.json": "./package.json" 9 }, 10 "types": "./index.d.ts", 11 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 13 "prepublishOnly": "safe-publish-latest", 14 "prepublish": "not-in-publish || npm run prepublishOnly", 15 "prelint": "evalmd README.md && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", 16 "lint": "eslint --ext=js,mjs .", 17 "postlint": "tsc -p . && attw -P", 18 "pretest": "npm run lint", 19 "tests-only": "nyc tape 'test/**/*.js'", 20 "test": "npm run tests-only", 21 "posttest": "npx npm@'>= 10.2' audit --production", 22 "version": "auto-changelog && git add CHANGELOG.md", 23 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 24 }, 25 "repository": { 26 "type": "git", 27 "url": "git+https://github.com/ljharb/side-channel-map.git" 28 }, 29 "keywords": [], 30 "author": "Jordan Harband <ljharb@gmail.com>", 31 "funding": { 32 "url": "https://github.com/sponsors/ljharb" 33 }, 34 "license": "MIT", 35 "bugs": { 36 "url": "https://github.com/ljharb/side-channel-map/issues" 37 }, 38 "homepage": "https://github.com/ljharb/side-channel-map#readme", 39 "dependencies": { 40 "call-bound": "^1.0.2", 41 "es-errors": "^1.3.0", 42 "get-intrinsic": "^1.2.5", 43 "object-inspect": "^1.13.3" 44 }, 45 "devDependencies": { 46 "@arethetypeswrong/cli": "^0.17.1", 47 "@ljharb/eslint-config": "^21.1.1", 48 "@ljharb/tsconfig": "^0.2.2", 49 "@types/get-intrinsic": "^1.2.3", 50 "@types/object-inspect": "^1.13.0", 51 "@types/tape": "^5.6.5", 52 "auto-changelog": "^2.5.0", 53 "eclint": "^2.8.1", 54 "encoding": "^0.1.13", 55 "eslint": "=8.8.0", 56 "evalmd": "^0.0.19", 57 "in-publish": "^2.0.1", 58 "npmignore": "^0.3.1", 59 "nyc": "^10.3.2", 60 "safe-publish-latest": "^2.0.0", 61 "tape": "^5.9.0", 62 "typescript": "next" 63 }, 64 "auto-changelog": { 65 "output": "CHANGELOG.md", 66 "template": "keepachangelog", 67 "unreleased": false, 68 "commitLimit": false, 69 "backfillLimit": false, 70 "hideCredit": true 71 }, 72 "publishConfig": { 73 "ignore": [ 74 ".github/workflows" 75 ] 76 }, 77 "engines": { 78 "node": ">= 0.4" 79 } 80 }