Skip to content

Commit

Permalink
Release Indexeddb version 0.0.1.
Browse files Browse the repository at this point in the history
 * Update for dependency upgrades.
 * Upgrade `avenue` to `0.6.13`.
 * Upgrade `memento` to `^0.1.14`.
 * Upgrade `turnstile` to `^6.0.0-alpha.74`.
 * Start of IndexedDB looping constructs.
 * Upgrade `memento` to `^0.1.2`.
 * Start of edify generated `README.md`.
 * Create database with an upgrade.
 * Sketch of everything that needs to be completed.
 * Just want it to compile for now.
 * Build with Node.js 12, 14 and 15 on CI/CD.
 * Update `LICENSE` for 2021.
 * Upgrade `avenue` to `0.6.8`.
 * Upgrade `memento` to `^0.1.1`.
 * Upgrade `turnstile` to `^6.0.0-alpha.56`.
 * Checking in sketches before Memento upgrade.
 * Upgrade `proof` to `^9.0.3`.
 * Upgrade `event-target-shim` to `6.0.2`.
 * Implement IndexedDB sort. Closes #16.
 * Implement `EventTarget`. Closes #15.
 * Add chicklets and links to `README.md`. Closes #10.
 * Remove old release not tracking. See #10.
 * Convert `README.md` to Markdown.
 * Really get rid of that `t` directory. See #10.
 * Build with Actions, ship coverage to Codecov. Closes #11. Closes #12.
 * Add `.npmignore`. See #10.
 * Update `.gitignore`. See #10.
 * Remove `t` directory. See #10.
 * Build with only Node.js 12 on Travis CI. Closes #14.
 * Update `LICENSE` for 2020. Closes #13.
 * Build on Travis CI without `sudo`.
 * Upgrade Proof to 0.0.57.
 * Build on Travis without shipping to web server.
 * Tidy Proof test.
 * Upgrade Proof to 0.0.47. Closes #7.
 * Upgrade Proof to 0.0.44. Closes #6.

Closes #17.
  • Loading branch information
flatheadmill committed Mar 23, 2021
1 parent 69ab35e commit 30c7317
Showing 1 changed file with 22 additions and 23 deletions.
45 changes: 22 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,39 @@
{
"name": "indexeddb",
"version": "0.0.0",
"author": "Alan Gutierrez <[email protected]>",
"description": "A pure-JavaScript implementation of IndexedDB that is durable and scalable.",
"name": "indexeddb",
"version": "0.0.1",
"description":

"A pure-JavaScript implementation of IndexedDB that is durable and scalable.",

"keywords":
[
"btree", "leveldb", "levelup", "binary", "mvcc",
"database", "json", "b-tree", "concurrent", "persistence", "durable"
"btree", "leveldb", "levelup", "binary", "mvcc",
"database", "json", "b-tree", "concurrent", "persistence",
"durable"
],
"contributors": [],
"homepage": "https://github.com/bigeasy/indexeddb",
"bugs": "https://github.com/bigeasy/indexeddb/issues",
"licenses":
[{
"type": "MIT",
"url": "http://github.com/bigeasy/indexeddb/raw/master/LICENSE"
}],
"author": "Alan Gutierrez <[email protected]>",
"contributors": [],
"homepage": "https://github.com/bigeasy/indexeddb",
"bugs": "https://github.com/bigeasy/indexeddb/issues",
"repository":
{
"type": "git",
"url": "bigeasy/indexeddb"
"type": "git",
"url": "bigeasy/indexeddb"
},
"dependencies":
{
"event-target-shim": "6.0.2",
"avenue": "0.6.13",
"memento": "^0.1.14",
"turnstile": "^6.0.0-alpha.74"
"avenue": "0.6.13",
"event-target-shim": "6.0.2",
"memento": "^0.1.14",
"turnstile": "^6.0.0-alpha.74"
},
"main": "indexeddb",
"devDependencies":
{
"proof": "^9.0.3"
"proof": "^9.0.3"
},
"main": "indexeddb",
"scripts":
{
"test": "proof test/*.t.js"
"test": "proof test/*.t.js"
}
}

0 comments on commit 30c7317

Please sign in to comment.