Permalink
Cannot retrieve contributors at this time
103 lines (103 sloc)
2.92 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/arraybuffer.prototype.slice/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "arraybuffer.prototype.slice", | |
"version": "1.0.1", | |
"description": "ES spec-compliant shim for ArrayBuffer.prototype.slice", | |
"author": "Jordan Harband <ljharb@gmail.com>", | |
"funding": { | |
"url": "https://github.com/sponsors/ljharb" | |
}, | |
"license": "MIT", | |
"main": "index.js", | |
"exports": { | |
".": "./index.js", | |
"./auto": "./auto.js", | |
"./polyfill": "./polyfill.js", | |
"./implementation": "./implementation.js", | |
"./shim": "./shim.js", | |
"./package.json": "./package.json" | |
}, | |
"scripts": { | |
"prepack": "npmignore --auto --commentLines=autogenerated", | |
"prepublish": "not-in-publish || npm run prepublishOnly", | |
"prepublishOnly": "safe-publish-latest", | |
"pretest": "npm run lint", | |
"test": "npm run tests-only", | |
"posttest": "aud --production", | |
"tests-only": "nyc tape 'test/**/*.js'", | |
"prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", | |
"lint": "eslint --ext=js,mjs .", | |
"postlint": "evalmd README.md && es-shim-api --bound", | |
"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/es-shims/ArrayBuffer.prototype.slice.git" | |
}, | |
"homepage": "https://github.com/es-shims/ArrayBuffer.prototype.slice#readme", | |
"bugs": { | |
"url": "https://github.com/es-shims/ArrayBuffer.prototype.slice/issues" | |
}, | |
"keywords": [ | |
"javascript", | |
"ecmascript", | |
"ArrayBuffer.prototype.slice", | |
"polyfill", | |
"shim", | |
"ArrayBuffer", | |
"array", | |
"buffer", | |
"ArrayBuffer#slice", | |
"slice", | |
"typed array", | |
"es-shim API" | |
], | |
"dependencies": { | |
"array-buffer-byte-length": "^1.0.0", | |
"call-bind": "^1.0.2", | |
"define-properties": "^1.2.0", | |
"get-intrinsic": "^1.2.1", | |
"is-array-buffer": "^3.0.2", | |
"is-shared-array-buffer": "^1.0.2" | |
}, | |
"devDependencies": { | |
"@es-shims/api": "^2.4.2", | |
"@ljharb/eslint-config": "^21.1.0", | |
"aud": "^2.0.3", | |
"auto-changelog": "^2.4.0", | |
"covert": "^1.1.1", | |
"eclint": "^2.8.1", | |
"es-abstract": "^1.21.2", | |
"es-value-fixtures": "^1.4.2", | |
"eslint": "=8.8.0", | |
"evalmd": "^0.0.19", | |
"for-each": "^0.3.3", | |
"functions-have-names": "^1.2.3", | |
"has-strict-mode": "^1.0.1", | |
"in-publish": "^2.0.1", | |
"npmignore": "^0.3.0", | |
"nyc": "^10.3.2", | |
"object-inspect": "^1.12.3", | |
"safe-publish-latest": "^2.0.0", | |
"tape": "^5.6.4" | |
}, | |
"testling": { | |
"files": "test/index.js" | |
}, | |
"engines": { | |
"node": ">= 0.4" | |
}, | |
"auto-changelog": { | |
"output": "CHANGELOG.md", | |
"template": "keepachangelog", | |
"unreleased": false, | |
"commitLimit": false, | |
"backfillLimit": false, | |
"hideCredit": true | |
}, | |
"publishConfig": { | |
"ignore": [ | |
".github/workflows" | |
] | |
} | |
} |