indexeddb-chunk-store/package.json

35 lines
874 B
JSON
Raw Normal View History

2019-05-10 21:39:02 +01:00
{
2019-08-19 13:29:07 +01:00
"name": "chunk-store-idb",
"version": "0.0.3",
2019-08-16 14:58:04 +01:00
"description": "IndexedDB chunk store that is abstract-chunk-store compatible",
2019-08-19 13:29:07 +01:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2019-05-10 21:39:02 +01:00
"scripts": {
2019-08-15 10:03:34 +01:00
"build-test": "tsc && browserify test/test.js > test/bundle.js"
2019-05-10 21:39:02 +01:00
},
2019-08-19 15:11:10 +01:00
"homepage": "https://github.com/index23/chunk-store-idb",
2019-08-19 13:29:07 +01:00
"repository": {
"type": "git",
2019-08-19 15:11:10 +01:00
"url": "https://github.com/index23/chunk-store-idb.git"
2019-08-19 13:29:07 +01:00
},
"bugs": {
2019-08-19 15:11:10 +01:00
"url": "https://github.com/index23/chunk-store-idb/issues"
2019-08-19 13:29:07 +01:00
},
"keywords": [
"chunk",
"store",
"indexeddb",
"typescript",
"abstarct-chunk-store"
],
2019-08-16 14:55:26 +01:00
"author": "Damjan Bursac <bursacdamjan@gmail.com>",
"license": "MIT",
2019-08-19 13:29:07 +01:00
"dependencies": {},
2019-05-10 21:39:02 +01:00
"devDependencies": {
2019-08-19 13:29:07 +01:00
"@types/node": "^12.7.2",
2019-08-16 14:55:26 +01:00
"abstract-chunk-store": "^1.4.0",
"browserify": "^16.5.0",
"tape": "^4.9.1"
2019-05-10 21:39:02 +01:00
}
}