lik/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2016-07-21 22:16:45 +00:00
{
2023-07-10 00:41:33 +00:00
"name": "@push.rocks/lik",
2023-08-14 17:27:29 +00:00
"version": "6.0.4",
2018-07-15 14:04:27 +00:00
"private": false,
2016-07-21 22:16:45 +00:00
"description": "light little helpers for node",
2020-05-25 13:18:53 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-05-27 15:53:02 +00:00
"type": "module",
2016-07-21 22:16:45 +00:00
"scripts": {
2018-08-31 15:24:35 +00:00
"test": "(tstest test/)",
2023-01-18 16:45:19 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"buildDocs": "tsdoc"
2016-07-21 22:16:45 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/lik.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/lik/issues"
},
"homepage": "https://gitlab.com/pushrocks/lik#README",
2017-06-30 15:11:47 +00:00
"devDependencies": {
2022-05-27 15:53:02 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.4",
2023-01-18 11:18:47 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-05-27 15:53:02 +00:00
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
2023-01-18 11:18:47 +00:00
"@types/node": "^18.11.18"
2017-06-30 15:11:47 +00:00
},
2016-07-21 22:16:45 +00:00
"dependencies": {
2023-07-12 08:07:35 +00:00
"@push.rocks/smartdelay": "^3.0.2",
"@push.rocks/smartmatch": "^2.0.0",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.0",
"@push.rocks/smarttime": "^4.0.1",
2023-01-18 11:18:47 +00:00
"@types/minimatch": "^5.1.2",
2022-05-27 15:57:14 +00:00
"@types/symbol-tree": "^3.2.2",
2019-08-02 14:38:08 +00:00
"symbol-tree": "^3.2.4"
2019-08-02 14:33:45 +00:00
},
"files": [
2020-02-06 11:11:16 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-25 13:18:53 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-06 11:11:16 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-08-02 14:33:45 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-12 00:44:50 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-02 14:33:45 +00:00
]
2023-08-14 17:31:21 +00:00
}