filer/package.json

55 lines
1.6 KiB
JSON
Raw Normal View History

{
2013-12-02 21:33:44 +00:00
"name": "filer",
2013-12-11 17:55:25 +00:00
"description": "Node-like file system for browsers",
"keywords": [
"fs",
"node",
"file",
"system",
"browser",
"indexeddb",
"idb",
"websql"
],
2015-07-21 18:40:33 +00:00
"version": "0.0.44",
2013-12-11 17:55:25 +00:00
"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-2-Clause",
"scripts": {
"eslint": "npm run lint",
"eslint:fix": "npm run lint:fix",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"test:manual": "parcel tests/index.html --out-dir tests/dist",
"pretest": "npm run lint",
2018-07-27 15:23:27 +00:00
"test": "npm run karma-mocha",
"prebuild": "parcel build --global Filer src/index.js --no-minify --out-file filer.js",
"build": "parcel build --global Filer src/index.js --out-file filer.min.js --detailed-report",
"prekarma-mocha": "parcel build tests/index.js --no-source-maps --out-dir tests/dist",
"karma-mocha": "karma start karma.conf.js"
},
2013-12-11 17:55:25 +00:00
"repository": {
"type": "git",
"url": "https://github.com/filerjs/filer.git"
2013-12-11 17:55:25 +00:00
},
"dependencies": {
"base64-arraybuffer": "^0.1.5",
"es6-promisify": "^6.0.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.0.1",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^5.2.0",
2018-07-14 15:25:17 +00:00
"parcel-bundler": "^1.9.6"
},
"main": "./src/index.js",
"browser": "./dist/filer.min.js"
}