why-is-node-still-running
Version:
Find out exactly why Node is still running.
55 lines (54 loc) • 1.71 kB
JSON
{
"name": "why-is-node-still-running",
"description": "Find out exactly why Node is still running.",
"version": "1.0.0",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cheap-glitch/why-is-node-still-running.git"
},
"bugs": {
"url": "https://github.com/cheap-glitch/why-is-node-still-running/issues"
},
"author": "cheap glitch <cheap.glitch@gmail.com> (https://github.com/cheap-glitch)",
"homepage": "https://github.com/cheap-glitch/why-is-node-still-running#readme",
"keywords": [
"open-handles",
"call-stack",
"node-is-still-running-goddammit"
],
"main": "./build/index.min.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build:ts && npm run build:minify",
"build:minify": "terser --compress --mangle toplevel --comments '/^!/' --output build/index.min.js -- build/index.js",
"build:ts": "tsc-bundle ./tsconfig.json --exportAs commonjs",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"test": "jest --useStderr",
"upload:coverage": "coveralls < .coverage/lcov.info"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageDirectory": ".coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/lib/format.ts"
]
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"eslint": "^7.15.0",
"eslint-plugin-smarter-tabs": "^1.1.2",
"fetch-h2": "^2.5.1",
"jest": "^26.6.3",
"terser": "^5.5.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"typescript-bundle": "^1.0.17"
}
}