smartenv/package.json

64 lines
1.6 KiB
JSON
Raw Normal View History

2015-11-26 05:31:31 +00:00
{
2023-07-10 00:48:52 +00:00
"name": "@push.rocks/smartenv",
2023-11-09 15:37:53 +00:00
"version": "5.0.12",
2024-04-14 15:32:19 +00: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 15:09:24 +00:00
"type": "module",
2015-11-26 05:31:31 +00:00
"scripts": {
2019-06-17 06:46:28 +00:00
"test": "(tstest test/ --web)",
2022-03-16 15:09:24 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
2022-12-28 18:43:48 +00:00
"testbrowser": "(npm test) && (node testbrowser.js)",
"buildDocs": "tsdoc"
2015-11-26 05:31:31 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:12:50 +00:00
"url": "https://code.foss.global/push.rocks/smartenv.git"
2015-11-26 05:31:31 +00:00
},
"keywords": [
2024-04-14 15:32:19 +00:00
"environment detection",
"cross-platform",
"node.js",
"browser",
"module loading",
"CI detection",
"OS detection",
"runtime environment",
"typescript",
"async"
2015-11-26 05:31:31 +00:00
],
2017-04-20 22:04:28 +00:00
"author": "Lossless GmbH <hello@lossless.support> (https://lossless.com)",
2015-11-26 05:31:31 +00:00
"license": "MIT",
"bugs": {
2016-11-21 13:51:35 +00:00
"url": "https://gitlab.com/pushrocks/smartenv/issues"
2015-11-26 05:31:31 +00:00
},
2024-05-29 12:12:50 +00:00
"homepage": "https://code.foss.global/push.rocks/smartenv",
2015-11-26 05:31:31 +00:00
"dependencies": {
2023-10-03 16:54:51 +00:00
"@push.rocks/smartpromise": "^4.0.2"
2015-11-26 05:31:31 +00:00
},
2016-04-05 13:53:51 +00:00
"devDependencies": {
2024-04-14 15:32:19 +00:00
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsbundle": "^2.0.15",
2023-10-03 16:54:51 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-04-14 15:32:19 +00:00
"@git.zone/tstest": "^1.0.86",
2023-10-03 16:54:51 +00:00
"@push.rocks/tapbundle": "^5.0.8",
2024-04-14 15:32:19 +00:00
"@types/node": "^20.11.24",
2023-11-09 15:20:20 +00:00
"@types/npm": "^7.19.3"
2019-06-17 06:46:28 +00:00
},
2019-06-17 06:51:03 +00:00
"private": false,
2019-06-17 06:46:28 +00:00
"files": [
2020-06-25 22:23:10 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-17 06:46:28 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-09-29 10:23:07 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-06-17 06:46:28 +00:00
]
2024-04-14 15:32:19 +00:00
}