levelcache/package.json

51 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2020-02-05 17:11:30 +00:00
{
"name": "@pushrocks/levelcache",
2022-04-02 15:40:38 +00:00
"version": "3.0.0",
2020-02-05 17:11:30 +00:00
"private": false,
"description": "a cache that uses memory/disk/s3 as backup",
2021-04-23 18:40:57 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-22 21:45:12 +00:00
"type": "module",
2020-02-05 17:11:30 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2021-04-23 18:40:57 +00:00
"test": "(tstest test/ --web)",
2022-03-22 22:15:08 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2020-02-05 17:11:30 +00:00
},
"devDependencies": {
2022-03-22 21:45:12 +00:00
"@gitzone/tsbuild": "^2.1.60",
"@gitzone/tstest": "^1.0.69",
"@pushrocks/tapbundle": "^5.0.2",
"@types/node": "^17.0.22"
2020-02-05 17:11:30 +00:00
},
"dependencies": {
2022-03-22 21:45:12 +00:00
"@pushrocks/lik": "^5.0.4",
"@pushrocks/smartbucket": "^1.0.44",
2020-02-05 17:11:30 +00:00
"@pushrocks/smartcache": "^1.0.13",
2022-03-22 21:45:12 +00:00
"@pushrocks/smartenv": "^5.0.0",
"@pushrocks/smartexit": "^1.0.20",
"@pushrocks/smartfile": "^9.0.6",
2021-04-23 18:40:57 +00:00
"@pushrocks/smartjson": "^4.0.6",
2022-03-22 21:45:12 +00:00
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartstring": "^4.0.1",
2021-04-23 18:40:57 +00:00
"@pushrocks/smartunique": "^3.0.3",
2022-03-22 21:45:12 +00:00
"@pushrocks/taskbuffer": "^2.1.17"
2020-02-05 17:11:30 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-04-23 18:41:30 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-05 17:11:30 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-04-23 18:41:30 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-02-05 17:11:30 +00:00
]
2022-03-22 21:45:13 +00:00
}