UNPKG

pnpm

Version:

Fast, disk space efficient package manager

137 lines (136 loc) 5.95 kB
{ "_args": [ [ { "raw": "is-symbol@^1.0.2", "scope": null, "escapedName": "is-symbol", "name": "is-symbol", "rawSpec": "^1.0.2", "spec": ">=1.0.2 <2.0.0", "type": "range" }, "/home/zoltan/src/pnpm/pnpm/packages/pnpm/node_modules/es-to-primitive" ] ], "_from": "is-symbol@^1.0.2", "_hasShrinkwrap": false, "_id": "is-symbol@1.0.2", "_location": "/is-symbol", "_nodeVersion": "10.11.0", "_npmOperationalInternal": { "host": "s3://npm-registry-packages", "tmp": "tmp/is-symbol_1.0.2_1537489754249_0.5751165752963447" }, "_npmUser": { "name": "ljharb", "email": "ljharb@gmail.com" }, "_npmVersion": "6.4.1", "_phantomChildren": {}, "_requested": { "raw": "is-symbol@^1.0.2", "scope": null, "escapedName": "is-symbol", "name": "is-symbol", "rawSpec": "^1.0.2", "spec": ">=1.0.2 <2.0.0", "type": "range" }, "_requiredBy": [ "/es-to-primitive" ], "_resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", "_shasum": "a055f6ae57192caee329e7a860118b497a950f38", "_shrinkwrap": null, "_spec": "is-symbol@^1.0.2", "_where": "/home/zoltan/src/pnpm/pnpm/packages/pnpm/node_modules/es-to-primitive", "author": { "name": "Jordan Harband" }, "bugs": { "url": "https://github.com/ljharb/is-symbol/issues" }, "dependencies": { "has-symbols": "^1.0.0" }, "description": "Determine if a value is an ES6 Symbol or not.", "devDependencies": { "@ljharb/eslint-config": "^12.2.1", "covert": "^1.1.0", "eslint": "^4.19.1", "jscs": "^3.0.7", "nsp": "^3.2.1", "object-inspect": "^1.6.0", "safe-publish-latest": "^1.1.2", "semver": "^5.5.0", "tape": "^4.9.0" }, "directories": {}, "dist": { "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", "shasum": "a055f6ae57192caee329e7a860118b497a950f38", "tarball": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", "fileCount": 13, "unpackedSize": 23337, "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpDtaCRA9TVsSAnZWagAA9jMQAIEIRC5OduDYW1t7iLkI\n5RJTupgMQPmC/oXFX801sLvVQ4HlcUkWj4Qg8iY1B8tjWtWYiiMGnwvnH6ew\ncA0bSWtZoMGsduOSeIE8NuRIYKIoqbVVr+RPr1wQAlMA0lqVffoWmKmTyD7+\nS51VvVm6KHU7c+FV+roS2fgkElDnM4Ua0x7/0qWeA4C0xoTa51Q+bHg8wQVx\n3flwQXc2jH2PHmHO3TkmgomblIi0NPfD7naiZam3AWgmKBZgCEqLEP6wG149\n7Ct1uaaHZd/9UFmNr+Azg2bLRDi4YqR3GBiB3jj6YsqYAyvkBpudkLrdJdwN\nlOL8JRb4h0B+Ftih4NayQNbKSXMxUwiIfmh+DiAiDv5yVJ+Z444iIafeRyBl\nNdignBobmoa3mYm0M/hT5ZDD7EqZLR/aiu79v161H1RzOGh1kYtaPfSa/0bX\nT5gIzoZdO9HmFdgUHvCaUg5Pc+emccTeiI4oW0vDEu4TpwEpN8nUJb4Nf9Nq\n07cBt5o/XzKbd8kNxe404Nmfo8FoBgc1I7ewZobbxHeZdfc0UVk8mvK0ZdrK\nakdExSu6TFq5eshWXRNtYFarkHe99oaFzZthEu3ZHHT5L+5o2LNwp6wovssH\nP4LNpMXyNB/rkcaxoIDYdujTYYqHDh8w5qUyFzE5ANEnAFEn0A0hu8svXyoP\nv/0z\r\n=nc9A\r\n-----END PGP SIGNATURE-----\r\n" }, "engines": { "node": ">= 0.4" }, "gitHead": "9769e1bdc9a265e3f69cc0fab2002991bf0999b2", "homepage": "https://github.com/ljharb/is-symbol#readme", "keywords": [ "symbol", "es6", "is", "Symbol" ], "license": "MIT", "main": "index.js", "maintainers": [ { "name": "ljharb", "email": "ljharb@gmail.com" } ], "name": "is-symbol", "optionalDependencies": {}, "readme": "#is-symbol <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\n[![browser support][9]][10]\n\nIs this an ES6 Symbol value?\n\n## Example\n\n```js\nvar isSymbol = require('is-symbol');\nassert(!isSymbol(function () {}));\nassert(!isSymbol(null));\nassert(!isSymbol(function* () { yield 42; return Infinity; });\n\nassert(isSymbol(Symbol.iterator));\nassert(isSymbol(Symbol('foo')));\nassert(isSymbol(Symbol.for('foo')));\nassert(isSymbol(Object(Symbol('foo'))));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/is-symbol\n[2]: http://versionbadg.es/ljharb/is-symbol.svg\n[3]: https://travis-ci.org/ljharb/is-symbol.svg\n[4]: https://travis-ci.org/ljharb/is-symbol\n[5]: https://david-dm.org/ljharb/is-symbol.svg\n[6]: https://david-dm.org/ljharb/is-symbol\n[7]: https://david-dm.org/ljharb/is-symbol/dev-status.svg\n[8]: https://david-dm.org/ljharb/is-symbol#info=devDependencies\n[9]: https://ci.testling.com/ljharb/is-symbol.png\n[10]: https://ci.testling.com/ljharb/is-symbol\n[11]: https://nodei.co/npm/is-symbol.png?downloads=true&stars=true\n[license-image]: http://img.shields.io/npm/l/is-symbol.svg\n[license-url]: LICENSE\n[downloads-image]: http://img.shields.io/npm/dm/is-symbol.svg\n[downloads-url]: http://npm-stat.com/charts.html?package=is-symbol\n", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git://github.com/ljharb/is-symbol.git" }, "scripts": { "coverage": "covert test", "eslint": "eslint *.js */*.js", "jscs": "jscs *.js */*.js", "lint": "npm run jscs && npm run eslint", "posttest": "npm run security", "prepublish": "safe-publish-latest", "pretest": "npm run lint", "security": "nsp check", "test": "npm run tests-only", "tests-only": "node --es-staging --harmony test" }, "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.2" }