GT2/GT2-iOS/node_modules/has-symbols/package.json

144 lines
5.6 KiB
JSON

{
"_args": [
[
{
"raw": "has-symbols@^1.0.0",
"scope": null,
"escapedName": "has-symbols",
"name": "has-symbols",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/object.assign"
]
],
"_from": "has-symbols@>=1.0.0 <2.0.0",
"_id": "has-symbols@1.0.0",
"_inCache": true,
"_location": "/has-symbols",
"_nodeVersion": "6.6.0",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/has-symbols-1.0.0.tgz_1474328796481_0.2780582248233259"
},
"_npmUser": {
"name": "ljharb",
"email": "ljharb@gmail.com"
},
"_npmVersion": "3.10.3",
"_phantomChildren": {},
"_requested": {
"raw": "has-symbols@^1.0.0",
"scope": null,
"escapedName": "has-symbols",
"name": "has-symbols",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/object.assign"
],
"_resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz",
"_shasum": "ba1a8f1af2a0fc39650f5c850367704122063b44",
"_shrinkwrap": null,
"_spec": "has-symbols@^1.0.0",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/object.assign",
"author": {
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
},
"bugs": {
"url": "https://github.com/ljharb/has-symbols/issues"
},
"contributors": [
{
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
}
],
"dependencies": {},
"description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",
"devDependencies": {
"@ljharb/eslint-config": "^8.0.0",
"core-js": "^2.4.1",
"eslint": "^3.5.0",
"get-own-property-symbols": "^0.9.2",
"nsp": "^2.6.1",
"safe-publish-latest": "^1.0.1",
"tape": "^4.6.0"
},
"directories": {},
"dist": {
"shasum": "ba1a8f1af2a0fc39650f5c850367704122063b44",
"tarball": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz"
},
"engines": {
"node": ">= 0.4"
},
"gitHead": "e4a5e7028c87d509902ff292f4da3ea45c7c50cf",
"homepage": "https://github.com/ljharb/has-symbols#readme",
"keywords": [
"Symbol",
"symbols",
"typeof",
"sham",
"polyfill",
"native",
"core-js",
"ES6"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "ljharb",
"email": "ljharb@gmail.com"
}
],
"name": "has-symbols",
"optionalDependencies": {},
"readme": "# has-symbols <sup>[![Version Badge][2]][1]</sup>\n\n[![Build Status][3]][4]\n[![dependency status][5]][6]\n[![dev dependency status][7]][8]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][11]][1]\n\nDetermine if the JS environment has Symbol support. Supports spec, or shams.\n\n## Example\n\n```js\nvar hasSymbols = require('has-symbols');\n\nhasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable.\n\nvar hasSymbolsKinda = require('has-symbols/shams');\nhasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec.\n```\n\n## Supported Symbol shams\n - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols)\n - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js)\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/has-symbols\n[2]: http://versionbadg.es/ljharb/has-symbols.svg\n[3]: https://travis-ci.org/ljharb/has-symbols.svg\n[4]: https://travis-ci.org/ljharb/has-symbols\n[5]: https://david-dm.org/ljharb/has-symbols.svg\n[6]: https://david-dm.org/ljharb/has-symbols\n[7]: https://david-dm.org/ljharb/has-symbols/dev-status.svg\n[8]: https://david-dm.org/ljharb/has-symbols#info=devDependencies\n[9]: https://ci.testling.com/ljharb/has-symbols.png\n[10]: https://ci.testling.com/ljharb/has-symbols\n[11]: https://nodei.co/npm/has-symbols.png?downloads=true&stars=true\n[license-image]: http://img.shields.io/npm/l/has-symbols.svg\n[license-url]: LICENSE\n[downloads-image]: http://img.shields.io/npm/dm/has-symbols.svg\n[downloads-url]: http://npm-stat.com/charts.html?package=has-symbols\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/ljharb/has-symbols.git"
},
"scripts": {
"lint": "eslint *.js",
"posttest": "npm run --silent security",
"prepublish": "safe-publish-latest",
"pretest": "npm run --silent lint",
"security": "nsp check",
"test": "npm run --silent tests-only",
"test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
"test:shams:corejs": "node test/shams/core-js.js",
"test:shams:getownpropertysymbols": "node test/shams/get-own-property-symbols.js",
"test:staging": "node --harmony --es-staging test",
"test:stock": "node test",
"tests-only": "npm run --silent test:stock && npm run --silent test:staging && npm run --silent test:shams"
},
"testling": {
"files": "test/index.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2"
]
},
"version": "1.0.0"
}