node-query/node_modules/grunt-istanbul/node_modules/istanbul/node_modules/escodegen/node_modules/esutils/package.json

50 lines
4.3 KiB
JSON

{
"name": "esutils",
"description": "utility box for ECMAScript language tools",
"homepage": "https://github.com/Constellation/esutils",
"main": "lib/utils.js",
"version": "1.0.0",
"engines": {
"node": ">=0.10.0"
},
"directories": {
"lib": "./lib"
},
"maintainers": [
{
"name": "Yusuke Suzuki",
"email": "utatane.tea@gmail.com",
"url": "http://github.com/Constellation"
}
],
"repository": {
"type": "git",
"url": "http://github.com/Constellation/esutils.git"
},
"dependencies": {},
"devDependencies": {
"mocha": "~1.12.0",
"chai": "~1.7.2",
"jshint": "2.1.5",
"coffee-script": "~1.6.3"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/Constellation/esutils/raw/master/LICENSE.BSD"
}
],
"scripts": {
"test": "npm run-script lint && npm run-script unit-test",
"lint": "jshint lib/*.js",
"unit-test": "mocha --compilers coffee:coffee-script -R spec"
},
"readme": "esutils ([esutils](http://github.com/Constellation/esutils)) is\nutility box for ECMAScript language tools.\n\n### Functions\n\n#### code.isDecimalDigit(code)\n\nReturn true if provided code is decimal digit.\n\n#### code.isHexDigit(code)\n\nReturn true if provided code is hexadecimal digit.\n\n#### code.isOctalDigit(code)\n\nReturn true if provided code is octal digit.\n\n#### code.isWhiteSpace(code)\n\nReturn true if provided code is white space. White space characters are formally defined in ECMA262.\n\n#### code.isLineTerminator(code)\n\nReturn true if provided code is line terminator. Line terminator characters are formally defined in ECMA262.\n\n#### code.isIdentifierStart(code)\n\nReturn true if provided code can be the first character of ECMA262 Identifier. They are formally defined in ECMA262.\n\n#### code.isIdentifierPart(code)\n\nReturn true if provided code can be the trailing character of ECMA262 Identifier. They are formally defined in ECMA262.\n\n### keyword\n\n#### keyword.isKeywordES5(id, strict)\n\nReturn true if provided identifier string is one of Keywords in ECMA262 5.1. They are formally defined in ECMA262.\nIf strict flag is true, this function additionally checks whether id is keyword under strict mode.\n\n#### keyword.isKeywordES6(id, strict)\n\nReturn true if provided identifier string is one of Keywords in ECMA262 6. They are formally defined in ECMA262.\nIf strict flag is true, this function additionally checks whether id is keyword under strict mode.\n\n#### keyword.isRestrictedWord(id)\n\nReturn true if provided identifier string is one of restricted words under strict mode: \"eval\" or \"arguments\".\nThey are formally defined in ECMA262.\n\n#### keyword.isIdentifierName(id)\n\nReturn true if provided identifier string can be IdentifierName.\nThey are formally defined in ECMA262.\n\n### License\n\nCopyright (C) 2013 [Yusuke Suzuki](http://github.com/Constellation)\n (twitter: [@Constellation](http://twitter.com/Constellation)) and other contributors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/Constellation/esutils/issues"
},
"_id": "esutils@1.0.0",
"_from": "esutils@~1.0.0"
}