2016-10-30 11:57:12 +01:00
{
"name" : "lossless-cut" ,
2018-02-18 14:06:40 +01:00
"version" : "1.10.0" ,
2016-10-30 11:57:12 +01:00
"description" : "" ,
"main" : "index.js" ,
"scripts" : {
2016-11-03 20:16:27 +01:00
"start" : "electron dist" ,
2016-10-31 22:12:35 +01:00
"watch" : "npm run build && babel src -d dist --copy-files -w" ,
2016-11-03 20:16:27 +01:00
"build" : "rm -rf dist && babel src -d dist --copy-files && ln -s ../node_modules dist/ && ln -s ../package.json ./dist/" ,
2016-11-05 21:22:31 +01:00
"download-ffmpeg" : "bash ./scripts/ffmpeg-dl/dl.sh" ,
"extract-ffmpeg" : "bash ./scripts/ffmpeg-dl/extract.sh" ,
"copy-ffmpeg" : "rm -rf dist/ffmpeg && mkdir dist/ffmpeg && cp ffmpeg-tmp/binaries/${PLATFORM}_${ARCH}/* dist/ffmpeg" ,
2017-02-03 17:18:11 +01:00
"package-single" : "npm run copy-ffmpeg && electron-packager dist LosslessCut --out=package --asar.unpackDir=ffmpeg --overwrite --platform=${PLATFORM} --arch=${ARCH} --icon=icon-dist/${ICON} --app-copyright='Copyright (c) 2017 Mikael Finstad' --win32metadata.CompanyName=mifi --win32metadata.FileDescription=LosslessCut --win32metadata.OriginalFilename=LosslessCut.exe --win32metadata.ProductName=LosslessCut --win32metadata.InternalName=LosslessCut" ,
2016-11-05 21:22:31 +01:00
"package:darwin_x64" : "PLATFORM=darwin ARCH=x64 ICON=app.icns npm run package-single" ,
"package:win32_ia32" : "PLATFORM=win32 ARCH=ia32 ICON=app.ico npm run package-single" ,
"package:win32_x64" : "PLATFORM=win32 ARCH=x64 ICON=app.ico npm run package-single" ,
"package:linux_ia32" : "PLATFORM=linux ARCH=ia32 ICON=app.ico npm run package-single" ,
"package:linux_x64" : "PLATFORM=linux ARCH=x64 ICON=app.ico npm run package-single" ,
2016-11-06 19:53:32 +01:00
"zip" : "(cd package && rm -f LosslessCut-*.zip && for f in LosslessCut-*; do zip -r --symlinks \"$f\".zip \"$f\"; done)" ,
2016-11-05 21:22:31 +01:00
"icon-gen" : "icon-gen -i src/icon.svg -o ./icon-dist -r" ,
"package" : "npm run package:darwin_x64 && npm run package:win32_ia32 && npm run package:win32_x64 && npm run package:linux_ia32 && npm run package:linux_x64 && npm run zip" ,
2017-02-11 14:46:06 +01:00
"release" : "gh-release -a package/LosslessCut-darwin-x64.zip,package/LosslessCut-win32-ia32.zip,package/LosslessCut-win32-x64.zip,package/LosslessCut-linux-ia32.zip,package/LosslessCut-linux-x64.zip" ,
2016-11-03 20:16:27 +01:00
"gifify" : "gifify -p 405:299 -r 5@3 Untitled.mov-00.00.00.971-00.00.19.780.mp4" ,
2017-09-14 19:31:14 +02:00
"lint" : "eslint --ext .jsx --ext .js ." ,
2017-03-19 15:48:55 +01:00
"clean" : "rm -rf dist ffmpeg-tmp/extracted ffmpeg-tmp/binaries package" ,
2017-02-11 14:46:06 +01:00
"clean-ffmpeg" : "rm -rf ffmpeg-tmp/archives"
2016-10-30 11:57:12 +01:00
} ,
"author" : {
"name" : "Mikael Finstad" ,
"email" : "finstaden@gmail.com" ,
"url" : "mifi.no"
} ,
2017-02-11 14:47:17 +01:00
"repository" : {
"type" : "git" ,
"url" : "https://github.com/mifi/lossless-cut.git"
2017-02-11 14:46:06 +01:00
} ,
2016-10-30 11:57:12 +01:00
"license" : "MIT" ,
"devDependencies" : {
"babel-cli" : "^6.18.0" ,
2018-05-17 12:08:11 +02:00
"babel-plugin-transform-class-properties" : "^6.24.1" ,
"babel-plugin-transform-object-rest-spread" : "^6.26.0" ,
2018-02-17 17:42:59 +01:00
"babel-preset-env" : "^1.6.1" ,
2016-11-03 20:16:27 +01:00
"babel-preset-react" : "^6.16.0" ,
2016-10-30 11:57:12 +01:00
"electron-packager" : "^8.1.0" ,
"eslint" : "^3.8.0" ,
"eslint-config-airbnb" : "^12.0.0" ,
2016-10-31 16:20:49 +01:00
"eslint-plugin-import" : "^1.16.0" ,
2016-10-30 11:57:12 +01:00
"eslint-plugin-jsx-a11y" : "^2.2.3" ,
2016-11-05 21:22:31 +01:00
"eslint-plugin-react" : "^6.4.1" ,
2017-02-11 14:46:06 +01:00
"gh-release" : "^2.2.1" ,
2018-02-17 17:42:59 +01:00
"icon-gen" : "^1.2.0"
2016-10-30 11:57:12 +01:00
} ,
"dependencies" : {
"bluebird" : "^3.4.6" ,
"classnames" : "^2.2.5" ,
2016-11-03 20:16:27 +01:00
"electron" : "^1.4.5" ,
2016-10-30 11:57:12 +01:00
"electron-default-menu" : "^1.0.0" ,
2016-11-21 19:05:19 +01:00
"electron-is-dev" : "^0.1.2" ,
2016-10-30 11:57:12 +01:00
"execa" : "^0.5.0" ,
2017-01-28 21:46:35 +01:00
"file-type" : "^4.1.0" ,
2018-02-17 15:15:30 +01:00
"github-api" : "^3.0.0" ,
2016-10-30 11:57:12 +01:00
"jquery" : "^3.1.1" ,
"lodash" : "^4.16.4" ,
2017-02-11 13:27:03 +01:00
"mime-types" : "^2.1.14" ,
2017-08-14 17:18:15 +02:00
"moment" : "^2.18.1" ,
2018-05-17 22:14:26 +02:00
"mousetrap" : "^1.6.1" ,
2016-10-30 11:57:12 +01:00
"react" : "^15.3.2" ,
"react-dom" : "^15.3.2" ,
2016-10-31 23:24:04 +01:00
"react-hammerjs" : "^0.5.0" ,
2016-11-08 20:36:44 +01:00
"read-chunk" : "^2.0.0" ,
2017-02-11 13:27:03 +01:00
"strong-data-uri" : "^1.0.4" ,
2016-10-30 11:57:12 +01:00
"which" : "^1.2.11"
}
}