2018-03-29 16:28:14 -04:00
|
|
|
{
|
|
|
|
"name": "film-exif-electron",
|
2018-05-03 14:44:48 -04:00
|
|
|
"author": "Timothy J. Warren",
|
|
|
|
"description": "A cross-platform app to exit exif tags",
|
2018-05-15 16:15:18 -04:00
|
|
|
"version": "0.5.0",
|
2018-05-03 15:23:48 -04:00
|
|
|
"private": true,
|
2018-05-15 15:34:58 -04:00
|
|
|
"build": {
|
2018-05-31 12:37:57 -04:00
|
|
|
"appId": "net.timshomepage.film-exif"
|
2018-05-15 15:34:58 -04:00
|
|
|
},
|
2018-03-29 16:28:14 -04:00
|
|
|
"dependencies": {
|
2018-04-13 23:28:55 -04:00
|
|
|
"electron-log": "^2.2.14",
|
2018-05-31 12:37:57 -04:00
|
|
|
"esm": "^3.0.40",
|
|
|
|
"exiftool-vendored": "^4.25.0",
|
|
|
|
"inferno": "^5.0.6",
|
|
|
|
"inferno-bootstrap": "^5.0.2",
|
2018-04-10 16:51:47 -04:00
|
|
|
"inferno-dev-utils": "^5.3.0",
|
2018-05-31 12:37:57 -04:00
|
|
|
"inferno-router": "^5.0.6",
|
2018-05-30 09:34:33 -04:00
|
|
|
"lodash": "^4.17.10",
|
2018-05-31 12:37:57 -04:00
|
|
|
"ws": "^5.2.0"
|
2018-04-10 16:51:47 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-05-31 12:37:57 -04:00
|
|
|
"@babel/core": "^7.0.0-beta.49",
|
|
|
|
"@babel/preset-env": "^7.0.0-beta.49",
|
2018-04-10 16:51:47 -04:00
|
|
|
"babel-eslint": "^8.2.2",
|
2018-05-31 12:37:57 -04:00
|
|
|
"babel-jest": "^23.0.1",
|
2018-05-03 15:23:48 -04:00
|
|
|
"babel-plugin-module-resolver": "^3.1.1",
|
2018-04-10 16:32:28 -04:00
|
|
|
"babel-preset-inferno-app": "^7.1.0",
|
2018-05-09 09:19:48 -04:00
|
|
|
"babel-runtime": "^6.26.0",
|
2018-05-15 15:34:58 -04:00
|
|
|
"bootstrap": "^4",
|
2018-05-31 12:37:57 -04:00
|
|
|
"electron": "^2.0.2",
|
|
|
|
"electron-builder": "^20.15.1",
|
2018-04-10 16:51:47 -04:00
|
|
|
"eslint": "^4.19.1",
|
|
|
|
"eslint-config-happiness": "^10.2.1",
|
2018-04-10 16:32:28 -04:00
|
|
|
"eslint-config-inferno-app": "^6.2.0",
|
2018-05-09 09:06:37 -04:00
|
|
|
"eslint-import-resolver-babel-module": "^4.0.0",
|
2018-05-31 12:37:57 -04:00
|
|
|
"eslint-plugin-import": "^2.12.0",
|
2018-04-20 11:47:34 -04:00
|
|
|
"eslint-plugin-inferno": "^7.8.0",
|
2018-04-10 16:32:28 -04:00
|
|
|
"eslint-plugin-jsx-a11y": "6.0.3",
|
2018-04-10 16:51:47 -04:00
|
|
|
"eslint-plugin-node": "^6.0.1",
|
2018-05-31 12:37:57 -04:00
|
|
|
"eslint-plugin-promise": "^3.8.0",
|
2018-04-10 16:51:47 -04:00
|
|
|
"eslint-plugin-standard": "^3.0.1",
|
2018-04-10 16:32:28 -04:00
|
|
|
"extract-text-webpack-plugin": "3.0.2",
|
2018-04-10 16:51:47 -04:00
|
|
|
"husky": "^0.14.3",
|
2018-05-31 12:37:57 -04:00
|
|
|
"jest": "^23.0.1",
|
2018-05-15 15:34:58 -04:00
|
|
|
"jquery": "^3.3.1",
|
2018-05-03 14:44:48 -04:00
|
|
|
"parcel-bundler": "^1.7.1",
|
2018-05-09 09:19:48 -04:00
|
|
|
"raf": "^3.4.0"
|
2018-03-29 16:28:14 -04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-05-30 09:34:33 -04:00
|
|
|
"build": "parcel build index.html --out-dir build/app --detailed-report",
|
2018-04-17 14:12:55 -04:00
|
|
|
"dist": "yarn run build && build",
|
|
|
|
"electron-start": "node src/electron/wait-inferno",
|
2018-03-29 16:28:14 -04:00
|
|
|
"electron": "electron .",
|
2018-04-10 17:04:30 -04:00
|
|
|
"fix": "eslint --fix src/**/*.js",
|
2018-05-07 16:33:32 -04:00
|
|
|
"inferno-start": "parcel index.html -p 3000",
|
2018-04-10 17:04:30 -04:00
|
|
|
"lint": "eslint src/**/*.js",
|
2018-03-29 16:28:14 -04:00
|
|
|
"pack": "build --dir",
|
2018-04-10 17:04:30 -04:00
|
|
|
"postinstall": "electron-builder install-app-deps",
|
2018-04-10 16:27:12 -04:00
|
|
|
"precommit": "yarn lint",
|
2018-05-07 16:33:32 -04:00
|
|
|
"react-start": "npm run inferno-start",
|
2018-04-10 16:32:28 -04:00
|
|
|
"test": "node scripts/test.js --env=jsdom"
|
2018-03-29 16:28:14 -04:00
|
|
|
},
|
|
|
|
"homepage": "./",
|
2018-04-20 11:17:44 -04:00
|
|
|
"main": "src/electron/index.js",
|
2018-05-30 09:34:33 -04:00
|
|
|
"mac": {
|
|
|
|
"category": "public.app-category.photography"
|
|
|
|
},
|
2018-04-10 16:32:28 -04:00
|
|
|
"jest": {
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"src/**/*.{js,jsx,mjs}"
|
|
|
|
],
|
|
|
|
"setupFiles": [
|
|
|
|
"<rootDir>/config/polyfills.js"
|
|
|
|
],
|
|
|
|
"testMatch": [
|
2018-04-10 17:04:30 -04:00
|
|
|
"<rootDir>/__tests__/**/*.{js,jsx,mjs}"
|
2018-04-10 16:32:28 -04:00
|
|
|
],
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"testURL": "http://localhost",
|
|
|
|
"transform": {
|
2018-05-03 14:44:48 -04:00
|
|
|
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
|
2018-04-10 16:32:28 -04:00
|
|
|
},
|
|
|
|
"transformIgnorePatterns": [
|
2018-04-20 11:47:34 -04:00
|
|
|
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
|
2018-04-10 16:32:28 -04:00
|
|
|
],
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"web.js",
|
|
|
|
"js",
|
|
|
|
"json",
|
|
|
|
"web.jsx",
|
|
|
|
"jsx",
|
|
|
|
"node"
|
|
|
|
]
|
|
|
|
}
|
2018-03-29 16:28:14 -04:00
|
|
|
}
|