smartstring/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2016-02-23 06:06:54 +00:00
{
"name": "@pushrocks/smartstring",
2021-01-22 18:27:51 +00:00
"version": "3.0.24",
"private": false,
2016-05-25 07:10:43 +00:00
"description": "handle strings in smart ways. TypeScript ready.",
2020-12-31 03:56:40 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-02-23 06:06:54 +00:00
"scripts": {
2018-08-13 22:19:32 +00:00
"test": "(tstest test/)",
2020-12-31 03:56:40 +00:00
"build": "(tsbuild --web)"
2016-02-23 06:06:54 +00:00
},
"repository": {
"type": "git",
2016-05-29 19:37:49 +00:00
"url": "git+https://gitlab.com/pushrocks/smartstring.git"
2016-02-23 06:06:54 +00:00
},
"keywords": [
"regex",
"string"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2016-05-29 19:37:49 +00:00
"url": "https://gitlab.com/pushrocks/smartstring/issues"
2016-02-23 06:06:54 +00:00
},
2016-05-29 19:37:49 +00:00
"homepage": "https://gitlab.com/pushrocks/smartstring#readme",
2016-02-23 06:06:54 +00:00
"devDependencies": {
2020-12-31 03:56:40 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.14.17",
"tslint": "^6.1.3",
2019-04-16 06:54:27 +00:00
"tslint-config-prettier": "^1.18.0"
2016-02-23 06:06:54 +00:00
},
"dependencies": {
2020-12-31 03:56:40 +00:00
"@pushrocks/smartenv": "^4.0.16",
2020-12-31 04:42:46 +00:00
"crypto-random-string": "^3.3.0",
2019-10-10 15:28:23 +00:00
"js-base64": "^2.5.1",
2017-10-05 13:55:59 +00:00
"normalize-newline": "^3.0.0",
"randomatic": "^3.1.1",
2020-12-31 03:56:40 +00:00
"strip-indent": "^3.0.0",
"url": "^0.11.0"
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
]
2021-01-22 14:46:04 +00:00
}