record-desktop
Version:
Record gifs and take screenshots on linux, built with electron.
105 lines (104 loc) • 3.19 kB
JSON
{
"name": "record-desktop",
"version": "0.5.2",
"description": "Record gifs and take screenshots on linux, built with electron.",
"main": "dist/main.js",
"scripts": {
"start": "NODE_ENV=development electron ./dist/main.js",
"test": "ava 'src/**/*.spec.js'",
"test:watch": "nodemon --exec ava",
"prebuild": "rm -rf dist && mkdir dist",
"build": "npm-run-all --parallel build:electron build:frontend",
"build:watch": "npm-run-all --parallel build:electron:watch build:frontend:watch",
"build:electron": "babel -d dist/ src/",
"build:electron:watch": "babel --watch -d dist/ src/",
"build:frontend": "NODE_ENV=production webpack",
"build:frontend:watch": "webpack-dev-server",
"precommit": "npm run lint",
"electron": "NODE_ENV=development electron ./dist/main.js",
"lint": "eslint src/* frontend/**/*.js",
"build:electron-pkg": "rm -rf dist-pkg && electron-packager . record-desktop --platform linux --arch x64 --out dist-pkg/",
"build:electron-deb": "npm run build:electron-pkg && electron-installer-debian --src dist-pkg/record-desktop-linux-x64/ --dest dist-pkg/installers/ --arch amd64"
},
"bin": {
"record-desktop": "app.js"
},
"ava": {
"require": [
"babel-register"
]
},
"preferGlobal": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/ewnd9/record-desktop.git"
},
"keywords": [
"gif",
"electron",
"linux"
],
"files": [
"dist",
"shared",
"public",
"app.js",
"cat.sh",
"icon.png",
"icon-recording.png"
],
"author": "ewnd9 <ewndnine@gmail.com>",
"license": "MIT",
"dependencies": {
"configstore": "^1.4.0",
"electron-localshortcut": "^1.1.1",
"electron-prebuilt": "^0.36.9",
"electron-save-file": "^1.0.2",
"globby": "^4.0.0",
"imgur": "^0.1.7",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"node-notifier": "^4.5.0",
"pify": "^2.3.0",
"pretty-bytes": "^3.0.1",
"whereis": "^0.4.0",
"winston": "^2.1.1"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-lodash": "^1.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bootstrap": "^3.3.6",
"css-loader": "^0.23.1",
"electron-contextmenu-middleware": "^1.0.1",
"electron-image-menu": "^1.0.0",
"electron-input-menu": "^1.0.2",
"electron-installer-debian": "^0.2.0",
"electron-packager": "^5.2.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.16.1",
"file-loader": "^0.8.5",
"husky": "^0.13.1",
"json-loader": "^0.5.4",
"lodash": "^4.5.0",
"nodemon": "^1.8.1",
"npm-run-all": "^1.4.0",
"proxyquire": "^1.7.11",
"react": "^0.14.6",
"react-component-gallery": "^1.2.1",
"react-dom": "^0.14.6",
"react-router": "^2.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1",
"webpack-target-electron-renderer": "^0.4.0",
"x11": "^2.0.5"
}
}