Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Add files to package.json and update description
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Apr 17, 2021
1 parent 5f42368 commit 809fb8e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .npmignore

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# level-packager

> `levelup` package helper for distributing with an `abstract-leveldown` compatible back-end
> `levelup` package helper for distributing with an `abstract-leveldown` store.
[![level badge][level-badge]](https://github.com/Level/awesome)
[![npm](https://img.shields.io/npm/v/level-packager.svg?label=&logo=npm)](https://www.npmjs.com/package/level-packager)
Expand Down
3 changes: 2 additions & 1 deletion abstract/location.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use strict'

const path = require('path')
const os = require('os')

module.exports = path.join(__dirname, 'level-test-' + process.pid + '.db')
module.exports = path.join(os.tmpdir(), 'level-packager-' + process.pid + '-' + Date.now())
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "level-packager",
"version": "5.1.1",
"description": "LevelUP package helper for distributing with a LevelDOWN-compatible back-end",
"description": "levelup package helper for distributing with an abstract-leveldown store",
"license": "MIT",
"main": "level-packager.js",
"scripts": {
Expand All @@ -11,6 +11,14 @@
"dependency-check": "dependency-check . test.js abstract/*.js",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"abstract",
"level-packager.js",
"CHANGELOG.md",
"CONTRIBUTORS.md",
"LICENSE.md",
"UPGRADING.md"
],
"dependencies": {
"encoding-down": "^6.3.0",
"levelup": "^4.3.2"
Expand Down

0 comments on commit 809fb8e

Please sign in to comment.