Random little cleanups

This commit is contained in:
Timothy Farrell 2018-07-25 03:55:00 -05:00
parent ee94106287
commit b77fe7cf0c
3 changed files with 7 additions and 9 deletions

View File

@ -1,13 +1,9 @@
{
"name": "pouchtype",
"version": "1.0.1",
"version": "1.0.2",
"description": "Document Management Layer for PouchDB",
"main": "src/index.js",
"files": [
"dist",
"lib",
"src"
],
"files": ["dist", "lib", "src"],
"scripts": {
"test": "node ../../bin/runTests.js ./",
"pre-commit": "npm run test"
@ -15,7 +11,9 @@
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
"license": "Apache-2.0",
"dependencies": {
"frptools": "~3.2.1",
"frptools": "~3.2.1"
},
"devDependencies": {
"pouchdb": "~7.0.0"
}
}

View File

@ -1,2 +1,2 @@
import { isObject, deepAssign, pouchDocHash, pouchDocArrayHash } from './utils.js';
export { isObject, deepAssign, pouchDocHash, pouchDocArrayHash } from './utils.js';
export { TypeHandler } from './type.js';

View File

@ -1,4 +1,4 @@
import { prop, computed, id } from '../node_modules/frptools/src/index.js';
import { prop, computed, id } from 'frptools';
import { Watcher } from './watcher.js';
import { pouchDocArrayHash } from './utils.js';