Files
smartenv/package.json
T

66 lines
1.6 KiB
JSON
Raw Normal View History

2015-11-26 06:31:31 +01:00
{
2023-07-10 02:48:52 +02:00
"name": "@push.rocks/smartenv",
2026-05-01 11:03:45 +00:00
"version": "6.1.0",
2024-04-14 17:32:19 +02:00
"description": "A module for storing and accessing environment details across different platforms.",
2020-06-25 22:23:10 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-16 16:09:24 +01:00
"type": "module",
2015-11-26 06:31:31 +01:00
"scripts": {
"test": "tstest test/ --verbose",
"build": "tsbuild --web && tsbundle npm",
"testbrowser": "pnpm test && node testbrowser.js",
2022-12-28 19:43:48 +01:00
"buildDocs": "tsdoc"
2015-11-26 06:31:31 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:12:50 +02:00
"url": "https://code.foss.global/push.rocks/smartenv.git"
2015-11-26 06:31:31 +01:00
},
"keywords": [
2024-04-14 17:32:19 +02:00
"environment detection",
"cross-platform",
"node.js",
"browser",
"module loading",
"CI detection",
"OS detection",
"runtime environment",
"typescript",
"async"
2015-11-26 06:31:31 +01:00
],
2017-04-21 00:04:28 +02:00
"author": "Lossless GmbH <hello@lossless.support> (https://lossless.com)",
2015-11-26 06:31:31 +01:00
"license": "MIT",
"bugs": {
2016-11-21 14:51:35 +01:00
"url": "https://gitlab.com/pushrocks/smartenv/issues"
2015-11-26 06:31:31 +01:00
},
2024-05-29 14:12:50 +02:00
"homepage": "https://code.foss.global/push.rocks/smartenv",
2015-11-26 06:31:31 +01:00
"dependencies": {
"@push.rocks/smartpromise": "^4.2.3"
2015-11-26 06:31:31 +01:00
},
2016-04-05 15:53:51 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.1",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2019-06-17 08:46:28 +02:00
},
2019-06-17 08:51:03 +02:00
"private": false,
2019-06-17 08:46:28 +02:00
"files": [
2020-06-25 22:23:10 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-17 08:46:28 +02:00
"cli.js",
".smartconfig.json",
"license",
2019-06-17 08:46:28 +02:00
"npmextra.json",
"readme.md"
2020-09-29 10:23:07 +00:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.28.2"
}