detect-generator-support
Version:
Detect native generator function support.
96 lines (95 loc) • 2.44 kB
JSON
{
"name": "detect-generator-support",
"version": "1.0.2",
"description": "Detect native generator function support.",
"author": {
"name": "Philipp Burckhardt",
"email": "pburckhardt@outlook.com"
},
"contributors": [
{
"name": "Philipp Burckhardt",
"email": "pburckhardt@outlook.com"
},
{
"name": "Athan Reines",
"email": "kgryte@gmail.com"
}
],
"bin": {
"hasgenerators": "./bin/cli"
},
"scripts": {
"test": "if [ \"${TRAVIS}\" ]; then npm run test-ci; else npm run test-local; fi",
"test-local": "tape ./test/*.js | tap-spec",
"test-ci": "npm run test-local && xvfb-run npm run test-browsers",
"test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape ./test/*.js",
"test-browsers": "browserify -p ./node_modules/proxyquire-universal ./test/*.js | testling | tap-spec",
"coverage": "istanbul cover --dir ./reports/codecov/coverage --report lcovonly tape ./test/*.js && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/planeshifter/detect-generator-support.git"
},
"keywords": [
"utilities",
"utility",
"utils",
"util",
"detect",
"feature",
"generator",
"generator function",
"yield",
"es2015",
"es6",
"support",
"has",
"hasgenerator",
"hasgenerators",
"native",
"issupported",
"cli"
],
"bugs": {
"url": "https://github.com/planeshifter/detect-generator-support/issues"
},
"dependencies": {
"minimist": "^1.2.0",
"update-notifier": "^0.6.0",
"utils-eval": "^1.0.1"
},
"devDependencies": {
"browserify": "13.x.x",
"codecov": "1.x.x",
"istanbul": "^0.4.1",
"jshint": "2.x.x",
"jshint-stylish": "2.x.x",
"proxyquire": "^1.7.3",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.1.1",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"testling": "^1.7.1"
},
"testling": {
"files": [
"test/*.js"
],
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..latest",
"firefox/nightly",
"chrome/4.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..latest"
]
},
"license": "MIT"
}