Disable the confirmation dialog when deleting files in the VS Code explorer to streamline the development workflow and reduce friction during file management operations.
78 lines
2.2 KiB
JSON
78 lines
2.2 KiB
JSON
{
|
|
"name": "side-channel-list",
|
|
"version": "1.0.1",
|
|
"description": "Store information about any JS value in a side channel, using a linked list",
|
|
"main": "index.js",
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"types": "./index.d.ts",
|
|
"scripts": {
|
|
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
"prepublishOnly": "safe-publish-latest",
|
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
|
"prelint": "evalmd README.md && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
|
|
"lint": "eslint --ext=js,mjs .",
|
|
"postlint": "tsc -p . && attw -P",
|
|
"pretest": "npm run lint",
|
|
"tests-only": "nyc tape 'test/**/*.js'",
|
|
"test": "npm run tests-only",
|
|
"posttest": "npx npm@'>= 10.2' audit --production",
|
|
"version": "auto-changelog && git add CHANGELOG.md",
|
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ljharb/side-channel-list.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
|
"funding": {
|
|
"url": "https://github.com/sponsors/ljharb"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ljharb/side-channel-list/issues"
|
|
},
|
|
"homepage": "https://github.com/ljharb/side-channel-list#readme",
|
|
"dependencies": {
|
|
"es-errors": "^1.3.0",
|
|
"object-inspect": "^1.13.4"
|
|
},
|
|
"devDependencies": {
|
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
"@ljharb/eslint-config": "^22.2.2",
|
|
"@ljharb/tsconfig": "^0.3.2",
|
|
"@types/object-inspect": "^1.13.0",
|
|
"@types/tape": "^5.8.1",
|
|
"auto-changelog": "^2.5.0",
|
|
"eclint": "^2.8.1",
|
|
"encoding": "^0.1.13",
|
|
"eslint": "^8.57.1",
|
|
"evalmd": "^0.0.19",
|
|
"in-publish": "^2.0.1",
|
|
"npmignore": "^0.3.5",
|
|
"nyc": "^10.3.2",
|
|
"safe-publish-latest": "^2.0.0",
|
|
"tape": "^5.9.0",
|
|
"typescript": "next"
|
|
},
|
|
"auto-changelog": {
|
|
"output": "CHANGELOG.md",
|
|
"template": "keepachangelog",
|
|
"unreleased": false,
|
|
"commitLimit": false,
|
|
"backfillLimit": false,
|
|
"hideCredit": true
|
|
},
|
|
"publishConfig": {
|
|
"ignore": [
|
|
".github/workflows"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.4"
|
|
}
|
|
}
|