source: imaps-frontend/node_modules/es-set-tostringtag/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.0 KB
Line 
1{
2 "name": "es-set-tostringtag",
3 "version": "2.0.3",
4 "description": "A helper to optimistically set Symbol.toStringTag, when possible.",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./package.json": "./package.json"
9 },
10 "sideEffects": false,
11 "scripts": {
12 "prepack": "npmignore --auto --commentLines=autogenerated",
13 "prepublishOnly": "safe-publish-latest",
14 "prepublish": "not-in-publish || npm run prepublishOnly",
15 "prelint": "evalmd README.md",
16 "lint": "eslint --ext=js,mjs .",
17 "postlint": "tsc -p .",
18 "pretest": "npm run lint",
19 "tests-only": "tape 'test/**/*.js'",
20 "test": "npm run tests-only",
21 "posttest": "aud --production",
22 "version": "auto-changelog && git add CHANGELOG.md",
23 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/es-shims/es-set-tostringtag.git"
28 },
29 "author": "Jordan Harband <ljharb@gmail.com>",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/es-shims/es-set-tostringtag/issues"
33 },
34 "homepage": "https://github.com/es-shims/es-set-tostringtag#readme",
35 "devDependencies": {
36 "@ljharb/eslint-config": "^21.1.0",
37 "@types/get-intrinsic": "^1.2.2",
38 "@types/has-symbols": "^1.0.2",
39 "@types/tape": "^5.6.4",
40 "aud": "^2.0.4",
41 "auto-changelog": "^2.4.0",
42 "eslint": "=8.8.0",
43 "evalmd": "^0.0.19",
44 "in-publish": "^2.0.1",
45 "npmignore": "^0.3.1",
46 "safe-publish-latest": "^2.0.0",
47 "tape": "^5.7.5",
48 "typescript": "^5.4.0-dev.20240220"
49 },
50 "dependencies": {
51 "get-intrinsic": "^1.2.4",
52 "has-tostringtag": "^1.0.2",
53 "hasown": "^2.0.1"
54 },
55 "engines": {
56 "node": ">= 0.4"
57 },
58 "auto-changelog": {
59 "output": "CHANGELOG.md",
60 "template": "keepachangelog",
61 "unreleased": false,
62 "commitLimit": false,
63 "backfillLimit": false,
64 "hideCredit": true
65 },
66 "testling": {
67 "files": "./test/index.js"
68 },
69 "publishConfig": {
70 "ignore": [
71 ".github/workflows"
72 ]
73 }
74}
Note: See TracBrowser for help on using the repository browser.