early/package.json

52 lines
1.2 KiB
JSON
Raw Normal View History

2016-05-19 23:25:17 +00:00
{
2023-07-10 00:41:11 +00:00
"name": "@push.rocks/early",
2022-06-01 22:31:40 +00:00
"version": "4.0.3",
"private": false,
2016-09-19 18:50:01 +00:00
"description": "minimal and fast loading plugin for startup time measuring",
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/)",
2020-08-10 21:18:50 +00:00
"build": "(tsbuild --web)"
2016-05-19 23:25:17 +00:00
},
"repository": {
"type": "git",
2016-05-30 03:58:56 +00:00
"url": "git+https://gitlab.com/pushrocks/early.git"
2016-05-19 23:25:17 +00:00
},
"keywords": [
"preloader"
],
"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
},
2016-05-30 03:58:56 +00:00
"homepage": "https://gitlab.com/pushrocks/early#readme",
2016-05-20 17:06:25 +00:00
"devDependencies": {
2022-06-01 22:31:39 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsrun": "^1.2.35",
"@gitzone/tstest": "^1.0.71",
2022-03-21 07:30:09 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-06-01 22:31:39 +00:00
"@pushrocks/tapbundle": "^5.0.3"
2016-05-20 17:06:25 +00:00
},
"dependencies": {
2018-07-18 06:33:23 +00:00
"@pushrocks/consolecolor": "^2.0.1",
2022-03-21 07:30:09 +00:00
"@pushrocks/smartpromise": "^3.1.7"
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
]
2023-07-10 00:41:11 +00:00
}