CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json112 linesDownload Raw Back to has-symbols
1{2	"name": "has-symbols",3	"version": "1.1.0",4	"description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",5	"main": "index.js",6	"scripts": {7		"prepack": "npmignore --auto --commentLines=autogenerated",8		"prepublishOnly": "safe-publish-latest",9		"prepublish": "not-in-publish || npm run prepublishOnly",10		"pretest": "npm run --silent lint",11		"test": "npm run tests-only",12		"posttest": "npx npm@'>=10.2' audit --production",13		"tests-only": "npm run test:stock && npm run test:shams",14		"test:stock": "nyc node test",15		"test:staging": "nyc node --harmony --es-staging test",16		"test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",17		"test:shams:corejs": "nyc node test/shams/core-js.js",18		"test:shams:getownpropertysymbols": "nyc node test/shams/get-own-property-symbols.js",19		"lint": "eslint --ext=js,mjs .",20		"postlint": "tsc -p . && 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)\")\""23	},24	"repository": {25		"type": "git",26		"url": "git://github.com/inspect-js/has-symbols.git"27	},28	"keywords": [29		"Symbol",30		"symbols",31		"typeof",32		"sham",33		"polyfill",34		"native",35		"core-js",36		"ES6"37	],38	"author": {39		"name": "Jordan Harband",40		"email": "ljharb@gmail.com",41		"url": "http://ljharb.codes"42	},43	"contributors": [44		{45			"name": "Jordan Harband",46			"email": "ljharb@gmail.com",47			"url": "http://ljharb.codes"48		}49	],50	"funding": {51		"url": "https://github.com/sponsors/ljharb"52	},53	"license": "MIT",54	"bugs": {55		"url": "https://github.com/ljharb/has-symbols/issues"56	},57	"homepage": "https://github.com/ljharb/has-symbols#readme",58	"devDependencies": {59		"@arethetypeswrong/cli": "^0.17.0",60		"@ljharb/eslint-config": "^21.1.1",61		"@ljharb/tsconfig": "^0.2.0",62		"@types/core-js": "^2.5.8",63		"@types/tape": "^5.6.5",64		"auto-changelog": "^2.5.0",65		"core-js": "^2.6.12",66		"encoding": "^0.1.13",67		"eslint": "=8.8.0",68		"get-own-property-symbols": "^0.9.5",69		"in-publish": "^2.0.1",70		"npmignore": "^0.3.1",71		"nyc": "^10.3.2",72		"safe-publish-latest": "^2.0.0",73		"tape": "^5.9.0",74		"typescript": "next"75	},76	"testling": {77		"files": "test/index.js",78		"browsers": [79			"iexplore/6.0..latest",80			"firefox/3.0..6.0",81			"firefox/15.0..latest",82			"firefox/nightly",83			"chrome/4.0..10.0",84			"chrome/20.0..latest",85			"chrome/canary",86			"opera/10.0..latest",87			"opera/next",88			"safari/4.0..latest",89			"ipad/6.0..latest",90			"iphone/6.0..latest",91			"android-browser/4.2"92		]93	},94	"engines": {95		"node": ">= 0.4"96	},97	"auto-changelog": {98		"output": "CHANGELOG.md",99		"template": "keepachangelog",100		"unreleased": false,101		"commitLimit": false,102		"backfillLimit": false,103		"hideCredit": true104	},105	"publishConfig": {106		"ignore": [107			".github/workflows",108			"types"109		]110	}111}112