diff options
author | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 |
---|---|---|
committer | LinuxWizard42 <computerwizard@linuxmail.org> | 2022-10-12 22:54:37 +0300 |
commit | 703e03aba33f234712206769f57717ba7d92d23d (patch) | |
tree | 0041f04ccb75bd5379c764e9fe42249fffe75fc3 /node_modules/currently-unhandled/package.json | |
parent | ab6e257e6e9d9a483d7e86f220d8b209a2cd7753 (diff) | |
download | FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.gz FlashRunner-703e03aba33f234712206769f57717ba7d92d23d.tar.zst |
Added export_allowed file to make repository visible in cgit
Diffstat (limited to 'node_modules/currently-unhandled/package.json')
-rw-r--r-- | node_modules/currently-unhandled/package.json | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/node_modules/currently-unhandled/package.json b/node_modules/currently-unhandled/package.json new file mode 100644 index 0000000..3baae3d --- /dev/null +++ b/node_modules/currently-unhandled/package.json @@ -0,0 +1,71 @@ +{ + "name": "currently-unhandled", + "version": "0.4.1", + "description": "Track the list of currently unhandled promise rejections.", + "license": "MIT", + "repository": "jamestalmage/currently-unhandled", + "author": { + "name": "James Talmage", + "email": "james@talmage.io", + "url": "github.com/jamestalmage" + }, + "engines": { + "node": ">=0.10.0" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "files": [ + "index.js", + "core.js", + "browser.js" + ], + "keywords": [ + "unhandled", + "unhandledRejection", + "rejected", + "promises" + ], + "dependencies": { + "array-find-index": "^1.0.1" + }, + "devDependencies": { + "ava": "^0.15.1", + "bluebird": "^3.4.0", + "browserify": "^13.0.1", + "coveralls": "^2.11.9", + "delay": "^1.3.1", + "is-ci": "^1.0.8", + "karma": "^0.13.22", + "karma-browserify": "^5.0.5", + "karma-chrome-launcher": "^1.0.1", + "karma-firefox-launcher": "^1.0.0", + "karma-mocha": "^1.0.1", + "mocha": "^2.5.3", + "nyc": "^6.4.0", + "watchify": "^3.7.0", + "xo": "^0.15.0" + }, + "browser": { + "./index.js": "./browser.js" + }, + "ava": { + "files": "test.js" + }, + "nyc": { + "reporter": [ + "lcov", + "text" + ] + }, + "xo": { + "ignores": [ + "browser-bluebird-test.js" + ], + "envs": [ + "browser", + "mocha", + "node" + ] + } +} |