v0.0.3
This commit is contained in:
parent
acf3254797
commit
6e1380ae30
27
package.json
27
package.json
|
@ -1,17 +1,32 @@
|
||||||
{
|
{
|
||||||
"name": "indexeddb-chunk-store",
|
"name": "chunk-store-idb",
|
||||||
"version": "0.0.1",
|
"version": "0.0.3",
|
||||||
"description": "IndexedDB chunk store that is abstract-chunk-store compatible",
|
"description": "IndexedDB chunk store that is abstract-chunk-store compatible",
|
||||||
"main": "dist/Store.js",
|
"main": "dist/index.js",
|
||||||
|
"types": "dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build-test": "tsc && browserify test/test.js > test/bundle.js"
|
"build-test": "tsc && browserify test/test.js > test/bundle.js"
|
||||||
},
|
},
|
||||||
"keywords": ["chunk", "store", "indexeddb", "typescript", "abstarct-chunk-store"],
|
"homepage": "https://github.com/index23/indexeddb-chunk-store",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/index23/indexeddb-chunk-store.git"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/index23/indexeddb-chunk-store/issues"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"chunk",
|
||||||
|
"store",
|
||||||
|
"indexeddb",
|
||||||
|
"typescript",
|
||||||
|
"abstarct-chunk-store"
|
||||||
|
],
|
||||||
"author": "Damjan Bursac <bursacdamjan@gmail.com>",
|
"author": "Damjan Bursac <bursacdamjan@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {},
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@types/node": "^12.7.2",
|
||||||
"abstract-chunk-store": "^1.4.0",
|
"abstract-chunk-store": "^1.4.0",
|
||||||
"browserify": "^16.5.0",
|
"browserify": "^16.5.0",
|
||||||
"tape": "^4.9.1"
|
"tape": "^4.9.1"
|
||||||
|
|
Loading…
Reference in New Issue