122 lines
3.4 KiB
JSON
122 lines
3.4 KiB
JSON
{
|
|
"name": "film-exif",
|
|
"author": "Timothy J. Warren",
|
|
"description": "A cross-platform app to edit exif tags",
|
|
"version": "0.5.0",
|
|
"private": true,
|
|
"build": {
|
|
"appId": "net.timshomepage.film-exif",
|
|
"asar": true,
|
|
"copyright": "Copyright © year ${author}",
|
|
"files": [
|
|
"src/**/*",
|
|
"build/**/*",
|
|
"node_modules/**/*"
|
|
],
|
|
"mac": {
|
|
"category": "public.app-category.photography",
|
|
"icon": "assets/icons/FilmExif.icns",
|
|
"identity": null
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^5.3.0",
|
|
"electron-log": "^2.2.14",
|
|
"esm": "^3.0.40",
|
|
"exiftool-vendored": "^7.5.0",
|
|
"inferno": "^7.0.5",
|
|
"inferno-bootstrap": "^7.2.0",
|
|
"inferno-dev-utils": "^6.0.4",
|
|
"inferno-router": "^7.0.5",
|
|
"lodash-es": "^4.17.10",
|
|
"ws": "^6.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.0.0-beta.49",
|
|
"@babel/preset-env": "^7.0.0-beta.49",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-jest": "^23.0.1",
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
|
"babel-plugin-module-resolver": "^3.1.1",
|
|
"babel-preset-inferno-app": "^8.0.3",
|
|
"babel-runtime": "^6.26.0",
|
|
"bootstrap": "^4",
|
|
"electron": "^4.0.1",
|
|
"electron-builder": "^20.15.1",
|
|
"electron-devtools-installer": "^2.2.4",
|
|
"eslint": "^5.12.0",
|
|
"eslint-config-happiness": "^10.2.1",
|
|
"eslint-config-inferno-app": "^7.0.2",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-inferno": "^7.8.0",
|
|
"eslint-plugin-jsx-a11y": "6.1.2",
|
|
"eslint-plugin-node": "^8.0.1",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"husky": "^1.3.1",
|
|
"inferno-devtools": "^7.0.5",
|
|
"jest": "^23.0.1",
|
|
"jquery": "^3.3.1",
|
|
"raf": "^3.4.0",
|
|
"rollup": "^1.1.0",
|
|
"rollup-plugin-alias": "^1.4.0",
|
|
"rollup-plugin-babel": "^4.3.0",
|
|
"rollup-plugin-commonjs": "^9.1.3",
|
|
"rollup-plugin-copy": "^0.2.3",
|
|
"rollup-plugin-filesize": "^6.0.0",
|
|
"rollup-plugin-livereload": "^0.6.0",
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
|
"rollup-plugin-replace": "^2.0.0",
|
|
"rollup-plugin-serve": "^1.0.0",
|
|
"rollup-plugin-terser": "^4.0.2",
|
|
"rollup-plugin-uglify": "^6.0.1",
|
|
"rollup-plugin-visualizer": "^0.9.2"
|
|
},
|
|
"homepage": "/",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yarn lint"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "set NODE_ENV=production && rollup --config rollup.prod.js",
|
|
"dist": "yarn run build && build",
|
|
"electron-start": "set NODE_ENV=development && node src/electron/wait-inferno",
|
|
"electron": "electron .",
|
|
"fix": "eslint --fix src/**/*.js",
|
|
"inferno-start": "set NODE_ENV=development && rollup --config rollup.dev.js --watch",
|
|
"lint": "eslint src/**/*.js",
|
|
"pack": "build --dir",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"test": "node scripts/test.js --env=jsdom"
|
|
},
|
|
"main": "src/electron/index.js",
|
|
"jest": {
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx,mjs}"
|
|
],
|
|
"setupFiles": [
|
|
"<rootDir>/config/polyfills.js"
|
|
],
|
|
"testMatch": [
|
|
"<rootDir>/__tests__/**/*.{js,jsx,mjs}"
|
|
],
|
|
"testEnvironment": "node",
|
|
"testURL": "http://localhost",
|
|
"transform": {
|
|
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
|
|
},
|
|
"transformIgnorePatterns": [
|
|
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
|
|
],
|
|
"moduleFileExtensions": [
|
|
"web.js",
|
|
"js",
|
|
"json",
|
|
"web.jsx",
|
|
"jsx",
|
|
"node"
|
|
]
|
|
}
|
|
}
|