Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-to-primitive/package.json
rd565449 r0c6b92a 1 1 { 2 2 "name": "es-to-primitive", 3 "version": "1. 2.1",3 "version": "1.3.0", 4 4 "author": "Jordan Harband <ljharb@gmail.com>", 5 5 "funding": { … … 10 10 "main": "index.js", 11 11 "scripts": { 12 "pretest": "npm run --silent lint", 13 "test": "npm run --silent tests-only", 14 "posttest": "npx aud", 15 "tests-only": "node --es-staging test", 16 "coverage": "covert test/*.js", 17 "coverage-quiet": "covert test/*.js --quiet", 18 "lint": "eslint ." 12 "prepack": "npmignore --auto --commentLines=autogenerated", 13 "prepublish": "not-in-publish || npm run prepublishOnly", 14 "prepublishOnly": "safe-publish-latest", 15 "pretest": "npm run lint", 16 "test": "npm run tests-only", 17 "posttest": "npx npm@'>=10.2' audit --production", 18 "tests-only": "nyc tape 'test/**/*.js'", 19 "lint": "eslint --ext=js,mjs .", 20 "postlint": "tsc && attw -P", 21 "version": "auto-changelog && git add CHANGELOG.md", 22 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 19 23 }, 20 24 "repository": { … … 41 45 ], 42 46 "dependencies": { 43 "is-callable": "^1. 1.4",44 "is-date-object": "^1.0. 1",45 "is-symbol": "^1.0. 2"47 "is-callable": "^1.2.7", 48 "is-date-object": "^1.0.5", 49 "is-symbol": "^1.0.4" 46 50 }, 47 51 "devDependencies": { 48 "@ljharb/eslint-config": "^15.0.0", 49 "covert": "^1.1.1", 50 "eslint": "^6.6.0", 51 "foreach": "^2.0.5", 52 "function.prototype.name": "^1.1.1", 53 "has-symbols": "^1.0.0", 54 "object-inspect": "^1.6.0", 55 "object-is": "^1.0.1", 56 "replace": "^1.1.1", 57 "semver": "^6.3.0", 58 "tape": "^4.11.0" 52 "@arethetypeswrong/cli": "^0.17.0", 53 "@ljharb/eslint-config": "^21.1.1", 54 "@ljharb/tsconfig": "^0.2.0", 55 "@types/for-each": "^0.3.3", 56 "@types/function.prototype.name": "^1.1.3", 57 "@types/is-callable": "^1.1.2", 58 "@types/is-date-object": "^1.0.4", 59 "@types/is-symbol": "^1.0.2", 60 "@types/object-inspect": "^1.13.0", 61 "@types/object-is": "^1.1.0", 62 "@types/tape": "^5.6.4", 63 "auto-changelog": "^2.5.0", 64 "encoding": "^0.1.13", 65 "es-value-fixtures": "^1.5.0", 66 "eslint": "=8.8.0", 67 "for-each": "^0.3.3", 68 "function.prototype.name": "^1.1.6", 69 "npmignore": "^0.3.1", 70 "nyc": "^10.3.2", 71 "object-inspect": "^1.13.3", 72 "object-is": "^1.1.6", 73 "safe-publish-latest": "^2.0.0", 74 "tape": "^5.9.0", 75 "typescript": "next" 59 76 }, 60 77 "testling": { 61 "files": "test", 62 "browsers": [ 63 "iexplore/6.0..latest", 64 "firefox/3.0..6.0", 65 "firefox/15.0..latest", 66 "firefox/nightly", 67 "chrome/4.0..10.0", 68 "chrome/20.0..latest", 69 "chrome/canary", 70 "opera/10.0..latest", 71 "opera/next", 72 "safari/4.0..latest", 73 "ipad/6.0..latest", 74 "iphone/6.0..latest", 75 "android-browser/4.2" 76 ] 78 "files": "test/index.js" 77 79 }, 78 80 "engines": { 79 81 "node": ">= 0.4" 82 }, 83 "auto-changelog": { 84 "output": "CHANGELOG.md", 85 "template": "keepachangelog", 86 "unreleased": false, 87 "commitLimit": false, 88 "backfillLimit": false, 89 "hideCredit": true, 90 "startingVersion": "1.2.2" 91 }, 92 "publishConfig": { 93 "ignore": [ 94 ".github/workflows" 95 ] 80 96 } 81 97 }
Note:
See TracChangeset
for help on using the changeset viewer.