film-exif/package.json

127 lines
3.5 KiB
JSON
Raw Permalink Normal View History

2018-03-29 16:28:14 -04:00
{
2018-06-01 16:57:36 -04:00
"name": "film-exif",
2018-05-03 14:44:48 -04:00
"author": "Timothy J. Warren",
2018-06-01 16:57:36 -04:00
"description": "A cross-platform app to edit exif tags",
2018-05-15 16:15:18 -04:00
"version": "0.5.0",
2018-05-03 15:23:48 -04:00
"private": true,
"build": {
"appId": "net.timshomepage.film-exif",
2018-06-06 17:01:39 -04:00
"asar": true,
2018-06-01 16:57:36 -04:00
"copyright": "Copyright © year ${author}",
"files": [
"src/**/*",
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
2018-06-01 16:57:36 -04:00
"category": "public.app-category.photography",
"icon": "assets/icons/FilmExif.icns",
"identity": null
}
},
2018-03-29 16:28:14 -04:00
"dependencies": {
2019-01-11 16:32:52 -05:00
"better-sqlite3": "^5.3.0",
2018-04-13 23:28:55 -04:00
"electron-log": "^2.2.14",
"esm": "^3.0.40",
2019-01-11 16:32:52 -05:00
"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",
2019-01-11 16:32:52 -05:00
"ws": "^6.1.2"
2018-04-10 16:51:47 -04:00
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
2019-01-11 16:32:52 -05:00
"babel-eslint": "^10.0.1",
"babel-jest": "^23.0.1",
"babel-plugin-external-helpers": "^6.22.0",
2018-05-03 15:23:48 -04:00
"babel-plugin-module-resolver": "^3.1.1",
2019-01-11 16:32:52 -05:00
"babel-preset-inferno-app": "^8.0.3",
2018-05-09 09:19:48 -04:00
"babel-runtime": "^6.26.0",
"bootstrap": "^4",
2019-01-11 16:32:52 -05:00
"electron": "^4.0.1",
"electron-builder": "^20.15.1",
2018-06-06 17:01:39 -04:00
"electron-devtools-installer": "^2.2.4",
2019-01-11 16:32:52 -05:00
"eslint": "^5.12.0",
2018-04-10 16:51:47 -04:00
"eslint-config-happiness": "^10.2.1",
2019-01-11 16:32:52 -05:00
"eslint-config-inferno-app": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
2018-04-20 11:47:34 -04:00
"eslint-plugin-inferno": "^7.8.0",
2019-01-11 16:32:52 -05:00
"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",
2020-04-10 11:30:26 -04:00
"exiftool-vendored.pl": "^11.24.0",
2019-01-11 16:32:52 -05:00
"husky": "^1.3.1",
"inferno-devtools": "^7.0.5",
"jest": "^23.0.1",
"jquery": "^3.3.1",
"raf": "^3.4.0",
2019-01-11 16:32:52 -05:00
"rollup": "^1.1.0",
"rollup-plugin-alias": "^1.4.0",
2019-01-11 16:32:52 -05:00
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-commonjs": "^9.1.3",
2018-06-06 09:57:40 -04:00
"rollup-plugin-copy": "^0.2.3",
2019-01-11 16:32:52 -05:00
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-livereload": "^0.6.0",
2019-01-11 16:32:52 -05:00
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.0.0",
2019-01-11 16:32:52 -05:00
"rollup-plugin-serve": "^1.0.0",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-uglify": "^6.0.1",
"rollup-plugin-visualizer": "^0.9.2"
2018-03-29 16:28:14 -04:00
},
2018-06-06 17:01:39 -04:00
"homepage": "/",
2019-01-11 16:32:52 -05:00
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
2018-03-29 16:28:14 -04:00
"scripts": {
2018-06-06 09:57:40 -04:00
"build": "set NODE_ENV=production && rollup --config rollup.prod.js",
"predist": "yarn run build",
"dist": "build",
2018-06-06 17:01:39 -04:00
"electron-start": "set NODE_ENV=development && 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-06-06 17:01:39 -04:00
"inferno-start": "set NODE_ENV=development && rollup --config rollup.dev.js --watch",
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:32:28 -04:00
"test": "node scripts/test.js --env=jsdom"
2018-03-29 16:28:14 -04:00
},
2018-04-20 11:17:44 -04:00
"main": "src/electron/index.js",
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
}