smartstring/package.json

70 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2016-02-23 06:06:54 +00:00
{
2023-08-18 11:12:25 +00:00
"name": "@push.rocks/smartstring",
2024-03-03 11:36:00 +00:00
"version": "4.0.15",
"private": false,
2024-04-14 16:26:18 +00:00
"description": "A library for handling strings in smart ways, including manipulation and encoding, with TypeScript support.",
2020-12-31 03:56:40 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-18 21:50:24 +00:00
"type": "module",
2016-02-23 06:06:54 +00:00
"scripts": {
2018-08-13 22:19:32 +00:00
"test": "(tstest test/)",
2022-09-13 17:23:11 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2016-02-23 06:06:54 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:16:41 +00:00
"url": "https://code.foss.global/push.rocks/smartstring.git"
2016-02-23 06:06:54 +00:00
},
"keywords": [
2024-04-14 16:26:18 +00:00
"string manipulation",
"encode",
"decode",
"base64",
"indentation",
"normalization",
2016-02-23 06:06:54 +00:00
"regex",
2024-04-14 16:26:18 +00:00
"random string",
"cryptographic string",
"domain parsing",
"git repository parsing",
"docker environment parsing"
2016-02-23 06:06:54 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2023-12-27 20:57:45 +00:00
"url": "https://gitlab.com/push.rocks/smartstring/issues"
2016-02-23 06:06:54 +00:00
},
2024-05-29 12:16:41 +00:00
"homepage": "https://code.foss.global/push.rocks/smartstring",
2016-02-23 06:06:54 +00:00
"devDependencies": {
2024-03-01 22:34:43 +00:00
"@git.zone/tsbuild": "^2.1.72",
2023-08-31 14:31:23 +00:00
"@git.zone/tsrun": "^1.2.42",
2024-03-01 22:34:43 +00:00
"@git.zone/tstest": "^1.0.86",
2023-08-31 14:31:23 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-03-01 22:34:43 +00:00
"@types/node": "^20.11.24"
2016-02-23 06:06:54 +00:00
},
"dependencies": {
2023-08-18 11:12:25 +00:00
"@push.rocks/isounique": "^1.0.5",
2023-12-27 20:57:45 +00:00
"@push.rocks/smartenv": "^5.0.12",
"@types/randomatic": "^3.1.5",
2023-06-26 08:01:23 +00:00
"crypto-random-string": "^5.0.0",
2024-03-01 22:34:43 +00:00
"js-base64": "^3.7.7",
"randomatic": "^3.1.1",
2022-03-18 21:50:24 +00:00
"strip-indent": "^4.0.0",
2023-12-27 20:57:45 +00:00
"url": "^0.11.3"
2019-10-10 16:14:07 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-12-31 03:56:40 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-10 16:14:07 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-12-31 03:56:40 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-10-10 16:14:07 +00:00
]
2024-04-14 16:26:18 +00:00
}