/usr/lib/nodejs/currently-unhandled/package.json is in node-currently-unhandled 0.4.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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"
]
}
}
|