GT2/GT2-iOS/node_modules/globals/package.json

118 lines
4.2 KiB
JSON

{
"_args": [
[
{
"raw": "globals@^9.18.0",
"scope": null,
"escapedName": "globals",
"name": "globals",
"rawSpec": "^9.18.0",
"spec": ">=9.18.0 <10.0.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/babel-traverse"
]
],
"_from": "globals@>=9.18.0 <10.0.0",
"_id": "globals@9.18.0",
"_inCache": true,
"_location": "/globals",
"_nodeVersion": "8.0.0",
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/globals-9.18.0.tgz_1496827524121_0.8153965487144887"
},
"_npmUser": {
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
},
"_npmVersion": "5.0.0",
"_phantomChildren": {},
"_requested": {
"raw": "globals@^9.18.0",
"scope": null,
"escapedName": "globals",
"name": "globals",
"rawSpec": "^9.18.0",
"spec": ">=9.18.0 <10.0.0",
"type": "range"
},
"_requiredBy": [
"/babel-traverse"
],
"_resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
"_shasum": "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a",
"_shrinkwrap": null,
"_spec": "globals@^9.18.0",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/babel-traverse",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/globals/issues"
},
"dependencies": {},
"description": "Global identifiers from different JavaScript environments",
"devDependencies": {
"mocha": "*"
},
"directories": {},
"dist": {
"integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
"shasum": "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a",
"tarball": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"globals.json"
],
"gitHead": "09ba8754235e5953507b8d0543d65098bc7bb78d",
"homepage": "https://github.com/sindresorhus/globals#readme",
"keywords": [
"globals",
"global",
"identifiers",
"variables",
"vars",
"jshint",
"eslint",
"environments"
],
"license": "MIT",
"maintainers": [
{
"name": "byk",
"email": "ben@byk.im"
},
{
"name": "lo1tuma",
"email": "schreck.mathias@gmail.com"
},
{
"name": "nzakas",
"email": "nicholas@nczconsulting.com"
},
{
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
}
],
"name": "globals",
"optionalDependencies": {},
"readme": "# globals [![Build Status](https://travis-ci.org/sindresorhus/globals.svg?branch=master)](https://travis-ci.org/sindresorhus/globals)\n\n> Global identifiers from different JavaScript environments\n\nExtracted from [JSHint](https://github.com/jshint/jshint/blob/3a8efa979dbb157bfb5c10b5826603a55a33b9ad/src/vars.js) and [ESLint](https://github.com/eslint/eslint/blob/b648406218f8a2d7302b98f5565e23199f44eb31/conf/environments.json) and merged.\n\nIt's just a [JSON file](globals.json), so use it in whatever environment you like.\n\n**This module [no longer accepts](https://github.com/sindresorhus/globals/issues/82) new environments. If you need it for ESLint, just [create a plugin](http://eslint.org/docs/developer-guide/working-with-plugins#environments-in-plugins).**\n\n\n## Install\n\n```\n$ npm install --save globals\n```\n\n\n## Usage\n\n```js\nvar globals = require('globals');\n\nconsole.log(globals.browser);\n/*\n{\n\taddEventListener: false,\n\tapplicationCache: false,\n\tArrayBuffer: false,\n\tatob: false,\n\t...\n}\n*/\n```\n\nEach global is given a value of `true` or `false`. A value of `true` indicates that the variable may be overwritten. A value of `false` indicates that the variable should be considered read-only. This information is used by static analysis tools to flag incorrect behavior. We assume all variables should be `false` unless we hear otherwise.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
"readmeFilename": "readme.md",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/globals.git"
},
"scripts": {
"test": "mocha"
},
"version": "9.18.0"
}