filer/package.json

48 lines
1.1 KiB
JSON

{
"name": "filer",
"description": "Node-like file system for browsers",
"keywords": [
"fs",
"node",
"file",
"system",
"browser",
"indexeddb",
"idb",
"websql"
],
"version": "1.0.0",
"author": "Alan K <ack@modeswitch.org> (http://blog.modeswitch.org)",
"homepage": "http://filerjs.github.io/filer",
"bugs": "https://github.com/filerjs/filer/issues",
"license": "BSD",
"scripts": {
"build": "rollup -c --environment=development",
"test": "node node_modules/mocha/bin/mocha test/"
},
"repository": {
"type": "git",
"url": "https://github.com/filerjs/filer.git"
},
"dependencies": {
"base64-arraybuffer": "^0.1.2",
"buffer": "^5.1.0",
"debug": "^3.1.0",
"minimatch": "^3.0.4",
"mocha": "^5.2.0",
"should": "^13.2.1",
"source-map-support": "^0.5.6",
"url-parse": "^1.4.1",
"uuid-base62": "^0.1.0",
"uuid-parse": "^1.0.0"
},
"devDependencies": {
"rollup": "^0.59.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"semver": "^5.5.0"
},
"main": "dist/filer.js",
"module": "src/index.js"
}