levelcache/package.json

43 lines
1.0 KiB
JSON
Raw Normal View History

2020-02-05 17:11:30 +00:00
{
"name": "@pushrocks/levelcache",
2020-02-15 22:38:29 +00:00
"version": "1.0.6",
2020-02-05 17:11:30 +00:00
"private": false,
"description": "a cache that uses memory/disk/s3 as backup",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
"format": "(gitzone format)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7",
2020-02-15 22:38:28 +00:00
"@types/node": "^13.7.1",
2020-02-06 16:55:55 +00:00
"tslint": "^6.0.0",
2020-02-05 17:11:30 +00:00
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2020-02-15 22:38:28 +00:00
"@pushrocks/lik": "^3.0.18",
2020-02-05 17:11:30 +00:00
"@pushrocks/smartbucket": "^1.0.24",
"@pushrocks/smartcache": "^1.0.13",
2020-02-15 22:38:28 +00:00
"@pushrocks/smartfile": "^7.0.8",
2020-02-14 18:10:10 +00:00
"@pushrocks/smartstring": "^3.0.18",
"@pushrocks/smartunique": "^3.0.1"
2020-02-05 17:11:30 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_web/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2020-02-15 22:38:29 +00:00
}