UNPKG

kruonis

Version:
64 lines (63 loc) 1.58 kB
{ "name": "kruonis", "version": "1.0.4", "description": "A tool to perform benchmarks on TS", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, "./package.json": "./package.json", "./*": "./*" }, "scripts": { "build": "rollup -c", "test": "mocha --timeout 15000 -r esbuild-register tests/*.test.ts", "test-coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha --timeout 15000 -r esbuild-register tests/*.test.ts && nyc report --reporter=text-lcov | coveralls" }, "repository": { "type": "git", "url": "git+https://github.com/most-inesctec/kruonis.git" }, "keywords": [ "benchmarks", "performance", "analysis", "typescript", "benchmark", "time", "measure" ], "author": "most-inesctec", "license": "MIT", "bugs": { "url": "https://github.com/most-inesctec/kruonis/issues" }, "homepage": "https://github.com/most-inesctec/kruonis#readme", "files": [ "dist", "README.md", "LICENSE" ], "dependencies": { "performance-now": "^2.1.0" }, "devDependencies": { "@types/chai": "^4.2.21", "@types/mocha": "^9.0.0", "@types/node": "^16.6.2", "chai": "^4.3.4", "coveralls": "^3.1.1", "esbuild": "^0.12.21", "esbuild-register": "^3.0.0", "mocha": "^9.0.3", "nyc": "^15.1.0", "rollup": "^2.56.2", "rollup-plugin-typescript2": "^0.30.0", "typedoc": "^0.21.6", "typescript": "^4.3.5" } }