[d565449] | 1 | {
|
---|
| 2 | "name": "has-bigints",
|
---|
| 3 | "version": "1.0.2",
|
---|
| 4 | "description": "Determine if the JS environment has BigInt support.",
|
---|
| 5 | "main": "index.js",
|
---|
| 6 | "scripts": {
|
---|
| 7 | "version": "auto-changelog && git add CHANGELOG.md",
|
---|
| 8 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
|
---|
| 9 | "prepublishOnly": "safe-publish-latest",
|
---|
| 10 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
---|
| 11 | "lint": "eslint --ext=js,mjs .",
|
---|
| 12 | "pretest": "npm run lint",
|
---|
| 13 | "tests-only": "nyc tape 'test/**/*.js'",
|
---|
| 14 | "test": "npm run tests-only",
|
---|
| 15 | "posttest": "aud --production"
|
---|
| 16 | },
|
---|
| 17 | "repository": {
|
---|
| 18 | "type": "git",
|
---|
| 19 | "url": "git+https://github.com/ljharb/has-bigints.git"
|
---|
| 20 | },
|
---|
| 21 | "keywords": [
|
---|
| 22 | "BigInt",
|
---|
| 23 | "bigints",
|
---|
| 24 | "typeof",
|
---|
| 25 | "ES2020"
|
---|
| 26 | ],
|
---|
| 27 | "author": "Jordan Harband <ljharb@gmail.com>",
|
---|
| 28 | "funding": {
|
---|
| 29 | "url": "https://github.com/sponsors/ljharb"
|
---|
| 30 | },
|
---|
| 31 | "license": "MIT",
|
---|
| 32 | "bugs": {
|
---|
| 33 | "url": "https://github.com/ljharb/has-bigints/issues"
|
---|
| 34 | },
|
---|
| 35 | "homepage": "https://github.com/ljharb/has-bigints#readme",
|
---|
| 36 | "devDependencies": {
|
---|
| 37 | "@ljharb/eslint-config": "^21.0.0",
|
---|
| 38 | "aud": "^2.0.0",
|
---|
| 39 | "auto-changelog": "^2.4.0",
|
---|
| 40 | "eslint": "=8.8.0",
|
---|
| 41 | "in-publish": "^2.0.1",
|
---|
| 42 | "nyc": "^10.3.2",
|
---|
| 43 | "safe-publish-latest": "^2.0.0",
|
---|
| 44 | "tape": "^5.5.3"
|
---|
| 45 | },
|
---|
| 46 | "auto-changelog": {
|
---|
| 47 | "output": "CHANGELOG.md",
|
---|
| 48 | "template": "keepachangelog",
|
---|
| 49 | "unreleased": false,
|
---|
| 50 | "commitLimit": false,
|
---|
| 51 | "backfillLimit": false,
|
---|
| 52 | "hideCredit": true
|
---|
| 53 | }
|
---|
| 54 | }
|
---|