early/package.json

59 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2016-05-19 23:25:17 +00:00
{
2023-07-10 00:41:11 +00:00
"name": "@push.rocks/early",
2023-08-22 18:37:46 +00:00
"version": "4.0.4",
"private": false,
2024-04-14 11:35:03 +00:00
"description": "A plugin for measuring startup time with minimal performance impact.",
2020-05-14 12:56:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-21 07:30:09 +00:00
"type": "module",
2016-05-19 23:25:17 +00:00
"scripts": {
2022-03-21 07:30:09 +00:00
"test": "(tstest test/)",
2023-08-22 18:37:45 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2016-05-19 23:25:17 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:10:57 +00:00
"url": "https://code.foss.global/push.rocks/early.git"
2016-05-19 23:25:17 +00:00
},
"keywords": [
2024-04-14 11:35:03 +00:00
"performance measurement",
"startup time",
"high resolution timer",
"plugin",
"typescript",
"nodejs"
2016-05-19 23:25:17 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2016-05-30 03:58:56 +00:00
"url": "https://gitlab.com/pushrocks/early/issues"
2016-05-19 23:25:17 +00:00
},
2024-05-29 12:10:57 +00:00
"homepage": "https://code.foss.global/push.rocks/early",
2016-05-20 17:06:25 +00:00
"devDependencies": {
2023-08-22 18:37:45 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/smartdelay": "^3.0.1",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.5.3"
2016-05-20 17:06:25 +00:00
},
"dependencies": {
2023-08-22 18:37:45 +00:00
"@push.rocks/consolecolor": "^2.0.1",
"@push.rocks/smartpromise": "^4.0.2"
2020-05-14 12:56:58 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-08-10 21:18:50 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-05-14 12:56:58 +00:00
]
2024-04-14 11:35:03 +00:00
}