[d565449] | 1 | {
|
---|
| 2 | "name": "es-object-atoms",
|
---|
| 3 | "version": "1.0.0",
|
---|
| 4 | "description": "ES Object-related atoms: Object, ToObject, RequireObjectCoercible",
|
---|
| 5 | "main": "index.js",
|
---|
| 6 | "exports": {
|
---|
| 7 | ".": "./index.js",
|
---|
| 8 | "./RequireObjectCoercible": "./RequireObjectCoercible.js",
|
---|
| 9 | "./ToObject": "./ToObject.js",
|
---|
| 10 | "./package.json": "./package.json"
|
---|
| 11 | },
|
---|
| 12 | "sideEffects": false,
|
---|
| 13 | "scripts": {
|
---|
| 14 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
---|
| 15 | "prepublishOnly": "safe-publish-latest",
|
---|
| 16 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
---|
| 17 | "pretest": "npm run lint",
|
---|
| 18 | "test": "npm run tests-only",
|
---|
| 19 | "tests-only": "nyc tape 'test/**/*.js'",
|
---|
| 20 | "posttest": "aud --production",
|
---|
| 21 | "prelint": "evalmd README.md",
|
---|
| 22 | "lint": "eslint --ext=js,mjs .",
|
---|
| 23 | "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
|
---|
| 24 | "version": "auto-changelog && git add CHANGELOG.md",
|
---|
| 25 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
---|
| 26 | },
|
---|
| 27 | "repository": {
|
---|
| 28 | "type": "git",
|
---|
| 29 | "url": "git+https://github.com/ljharb/es-object-atoms.git"
|
---|
| 30 | },
|
---|
| 31 | "keywords": [
|
---|
| 32 | "javascript",
|
---|
| 33 | "ecmascript",
|
---|
| 34 | "object",
|
---|
| 35 | "toobject",
|
---|
| 36 | "coercible"
|
---|
| 37 | ],
|
---|
| 38 | "author": "Jordan Harband <ljharb@gmail.com>",
|
---|
| 39 | "license": "MIT",
|
---|
| 40 | "bugs": {
|
---|
| 41 | "url": "https://github.com/ljharb/es-object-atoms/issues"
|
---|
| 42 | },
|
---|
| 43 | "homepage": "https://github.com/ljharb/es-object-atoms#readme",
|
---|
| 44 | "dependencies": {
|
---|
| 45 | "es-errors": "^1.3.0"
|
---|
| 46 | },
|
---|
| 47 | "devDependencies": {
|
---|
| 48 | "@ljharb/eslint-config": "^21.1.0",
|
---|
| 49 | "@ljharb/tsconfig": "^0.2.0",
|
---|
| 50 | "@types/tape": "^5.6.4",
|
---|
| 51 | "aud": "^2.0.4",
|
---|
| 52 | "auto-changelog": "^2.4.0",
|
---|
| 53 | "eclint": "^2.8.1",
|
---|
| 54 | "eslint": "^8.8.0",
|
---|
| 55 | "evalmd": "^0.0.19",
|
---|
| 56 | "in-publish": "^2.0.1",
|
---|
| 57 | "npmignore": "^0.3.1",
|
---|
| 58 | "nyc": "^10.3.2",
|
---|
| 59 | "safe-publish-latest": "^2.0.0",
|
---|
| 60 | "tape": "^5.7.5",
|
---|
| 61 | "typescript": "next"
|
---|
| 62 | },
|
---|
| 63 | "auto-changelog": {
|
---|
| 64 | "output": "CHANGELOG.md",
|
---|
| 65 | "template": "keepachangelog",
|
---|
| 66 | "unreleased": false,
|
---|
| 67 | "commitLimit": false,
|
---|
| 68 | "backfillLimit": false,
|
---|
| 69 | "hideCredit": true
|
---|
| 70 | },
|
---|
| 71 | "publishConfig": {
|
---|
| 72 | "ignore": [
|
---|
| 73 | ".github/workflows"
|
---|
| 74 | ]
|
---|
| 75 | },
|
---|
| 76 | "engines": {
|
---|
| 77 | "node": ">= 0.4"
|
---|
| 78 | }
|
---|
| 79 | }
|
---|