Updated package.json

This commit is contained in:
Damjan Bursac 2019-08-16 15:55:26 +02:00
parent 1382daa9c3
commit 295e86a982
1 changed files with 10 additions and 10 deletions

View File

@ -1,19 +1,19 @@
{ {
"name": "chunk-store", "name": "indexeddb-chunk-store",
"version": "1.0.0", "version": "0.0.1",
"description": "", "description": "IndexedDB chunk store that is abstract-chunk-store compliant\n",
"main": "index.js", "main": "dist/Store.js",
"scripts": { "scripts": {
"build-test": "tsc && browserify test/test.js > test/bundle.js" "build-test": "tsc && browserify test/test.js > test/bundle.js"
}, },
"keywords": [], "keywords": ["chunk", "store", "indexeddb", "typescript", "abstarct-chunk-store"],
"author": "", "author": "Damjan Bursac <bursacdamjan@gmail.com>",
"license": "ISC", "license": "MIT",
"dependencies": { "dependencies": {
"abstract-chunk-store": "^1.4.0",
"tape": "^4.9.1"
}, },
"devDependencies": { "devDependencies": {
"browserify": "^16.5.0" "abstract-chunk-store": "^1.4.0",
"browserify": "^16.5.0",
"tape": "^4.9.1"
} }
} }