levelcache/package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

2020-02-05 17:11:30 +00:00
{
"name": "@pushrocks/levelcache",
2021-05-10 14:26:32 +00:00
"version": "1.0.10",
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",
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)",
"build": "(tsbuild --web)"
2020-02-05 17:11:30 +00:00
},
"devDependencies": {
2021-04-23 18:40:57 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tstest": "^1.0.52",
"@pushrocks/tapbundle": "^3.2.14",
"@types/node": "^14.14.41",
"tslint": "^6.1.3",
2020-02-05 17:11:30 +00:00
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2021-04-23 18:40:57 +00:00
"@pushrocks/lik": "^4.0.20",
"@pushrocks/smartbucket": "^1.0.39",
2020-02-05 17:11:30 +00:00
"@pushrocks/smartcache": "^1.0.13",
2021-04-23 18:40:57 +00:00
"@pushrocks/smartexit": "^1.0.15",
"@pushrocks/smartfile": "^8.0.9",
"@pushrocks/smartjson": "^4.0.6",
"@pushrocks/smartpromise": "^3.1.5",
"@pushrocks/smartstring": "^3.0.24",
"@pushrocks/smartunique": "^3.0.3",
"@pushrocks/taskbuffer": "^2.1.13"
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
]
2021-04-23 18:41:30 +00:00
}