UNPKG

sulu

Version:

A hackable file manager

53 lines (52 loc) 1.77 kB
{ "name": "sulu", "stability": "beta", "description": "A hackable file manager", "version": "0.7.4", "author": "Stephan Ahlf <stephan.ahlf@gmail.com>", "bugs": { "url": "https://github.com/s-a/sulu/issues" }, "preferGlobal": true, "bin": { "sulu": "lib/index.js" }, "homepage": "https://github.com/s-a/sulu", "keywords": [ "filesystem", "filemanager", "explorer", "finder", "file", "folder" ], "license": "", "repository": { "type": "git", "url": "https://github.com/sulu-one/sulu" }, "scripts": { "docs": "jsdoc2md \"./app/packages/**/*.js\" > api.md", "start": "electron ./app", "test": "echo \"Error: no test specified\" && exit 1", "clean": "rm -rf ./dist", "post-install": "cd app/packages && npm install", "pull": "git pull && cd app/packages/node_modules && git submodule update --recursive --remote && git submodule update --init", "bump": "npm run pull && npm version patch && git push && git push --tags && npm publish", "build-windows--ia32": "node lib/build.js --os windows --arch ia32", "build-windows--x64": "node lib/build.js --os windows --arch x64", "build-windows": "npm run build-windows--ia32 && npm run build-windows--x64", "build-linux--ia32": "node lib/build.js --os linux --arch ia32", "build-linux--x64": "node lib/build.js --os linux --arch x64", "build-mac--x64": "node lib/build.js --os mac --arch x64", "build-linux": "npm run build-linux--ia32 && npm run build-linux--x64", "build": "npm run build-linux && npm run build-windows" }, "devDependencies": { "electron": "^1.4.12", "electron-builder": "^10.13.1", "electron-prebuilt": "^1.2.2", "minimist": "^1.2.0" }, "dependencies": {} }