2013-03-11 19:14:26 +00:00
|
|
|
{
|
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",
|
2014-05-14 16:16:14 +00:00
|
|
|
"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)",
|
2014-09-18 17:08:48 +00:00
|
|
|
"homepage": "http://filerjs.github.io/filer",
|
|
|
|
"bugs": "https://github.com/filerjs/filer/issues",
|
2018-06-28 17:35:20 +00:00
|
|
|
"license": "BSD-2-Clause",
|
2014-01-21 21:25:09 +00:00
|
|
|
"scripts": {
|
2018-07-15 17:25:35 +00:00
|
|
|
"eslint": "npm run lint",
|
|
|
|
"eslint:fix": "npm run lint:fix",
|
2018-06-28 17:35:20 +00:00
|
|
|
"lint": "eslint src tests",
|
2018-07-15 17:25:35 +00:00
|
|
|
"lint:fix": "eslint --fix src tests",
|
2018-07-15 17:03:28 +00:00
|
|
|
"test:manual": "parcel tests/index.html --out-dir tests/dist",
|
|
|
|
"pretest": "npm run lint",
|
|
|
|
"test": "npm run travis",
|
2018-06-28 17:35:20 +00:00
|
|
|
"prebuild": "parcel build --global Filer src/index.js --no-minify --out-file filer.js",
|
2018-07-15 17:03:28 +00:00
|
|
|
"build": "parcel build --global Filer src/index.js --out-file filer.min.js --detailed-report",
|
|
|
|
"prekarma-mocha": "parcel build tests/index.js --out-dir tests/dist",
|
|
|
|
"karma-mocha": "karma start karma.conf.js"
|
2014-01-21 21:25:09 +00:00
|
|
|
},
|
2013-12-11 17:55:25 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2014-09-18 17:08:48 +00:00
|
|
|
"url": "https://github.com/filerjs/filer.git"
|
2013-12-11 17:55:25 +00:00
|
|
|
},
|
2014-03-07 03:31:35 +00:00
|
|
|
"dependencies": {
|
2018-06-28 17:35:20 +00:00
|
|
|
"base64-arraybuffer": "^0.1.5",
|
2018-06-28 21:02:50 +00:00
|
|
|
"minimatch": "^3.0.4"
|
2014-03-07 03:31:35 +00:00
|
|
|
},
|
2013-03-11 19:14:26 +00:00
|
|
|
"devDependencies": {
|
2018-06-28 17:35:20 +00:00
|
|
|
"chai": "^4.1.2",
|
|
|
|
"eslint": "^5.0.1",
|
2018-07-15 17:03:28 +00:00
|
|
|
"karma": "^2.0.4",
|
|
|
|
"karma-chai": "^0.1.0",
|
|
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
|
|
"karma-mocha": "^1.3.0",
|
|
|
|
"karma-mocha-reporter": "^2.2.5",
|
2018-06-28 17:35:20 +00:00
|
|
|
"mocha": "^5.2.0",
|
2018-07-14 15:25:17 +00:00
|
|
|
"parcel-bundler": "^1.9.6"
|
2014-05-19 20:47:24 +00:00
|
|
|
},
|
2018-06-28 23:26:08 +00:00
|
|
|
"main": "./src/index.js",
|
|
|
|
"browser": "./dist/filer.min.js"
|
2013-03-11 19:14:26 +00:00
|
|
|
}
|