UNPKG

@nitedani/inspector-api

Version:

A simple node module to access V8 inspector + some tools to export and read the data.

62 lines (61 loc) 1.47 kB
{ "name": "@nitedani/inspector-api", "version": "0.0.2", "bin": "./index.js", "types": "./index.d.ts", "main": "./lib/cjs/index.js", "typings": "./lib/cjs/index.d.ts", "exports": { "import": "./lib/esm/index.js", "require": "./lib/cjs/index.js" }, "files": [ "/lib" ], "scripts": { "types": "tsc -p tsconfig.json", "build": "rimraf lib && npm run build:esm && npm run build:cjs", "build:esm": "tsc --module esnext --outDir lib/esm", "build:cjs": "tsc --module commonjs --outDir lib/cjs" }, "keywords": [ "v8", "inspector", "profiler", "profiling", "cpu", "memory", "coverage", "heap", "HeapSnapshot", "performance", "sampling" ], "repository": { "type": "git", "url": "https://github.com/nitedani/v8-inspector-api" }, "author": { "email": "nitedani@gmail.com", "name": "Horváth Dániel" }, "license": "MIT", "description": "A simple node module to access V8 inspector + some tools to export and read the data.", "engines": { "node": ">=10.0.0", "npm": ">=6.0.0" }, "engineStrict": true, "devDependencies": { "cross-env": "^7.0.3", "eslint": "^8.2.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.25.3", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", "jest": "27.3.1", "rimraf": "^3.0.2", "ts-node": "^10.7.0", "typescript": "^4.4.4" } }