super-productivity/package.json
2017-02-09 21:43:51 +01:00

93 lines
3.1 KiB
JSON

{
"name": "superProductivity",
"version": "1.0.0",
"description": "Personal Task Management App to help you with your daily struggle with JIRA etc.",
"main": "./electron/main.js",
"repository": {},
"homepage": "http://super-productivity.com",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=DEV electron ./electron/main.js",
"pack": "build --dir",
"dist": "gulp build && build",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds",
"package-win": "electron-packager . --overwrite --asar=true --platform=win32 --arch=ia32 --icon=assets/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Electron Tutorial App\"",
"package-linux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=assets/icons/png/1024x1024.png --prune=true --out=release-builds"
},
"author": "Johannes Millan <contact@super-productivity.com> (http://super-productivity.com)",
"license": "none",
"build": {
"appId": "superProductivity",
"mac": {
"category": "task management"
},
"win": {
"iconUrl": "windowsicon"
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-angularjs-annotate": "^0.7.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"browser-sync": "latest",
"del": "latest",
"ecstatic": "latest",
"electron": "^1.4.15",
"electron-prebuilt": "^1.4.13",
"gulp": "latest",
"gulp-autoprefixer": "latest",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "latest",
"gulp-if": "latest",
"gulp-imagemin": "latest",
"gulp-inject": "latest",
"gulp-jscs": "latest",
"gulp-jshint": "latest",
"gulp-livereload": "latest",
"gulp-minify-html": "latest",
"gulp-natural-sort": "latest",
"gulp-ng-annotate": "latest",
"gulp-ng-config": "latest",
"gulp-plumber": "latest",
"gulp-protractor": "latest",
"gulp-sass": "latest",
"gulp-shell": "latest",
"gulp-sourcemaps": "latest",
"gulp-symlink": "latest",
"gulp-uglify": "latest",
"gulp-useref": "latest",
"gulp-util": "latest",
"gulp-watch": "latest",
"jasmine-core": "latest",
"jshint": "latest",
"jshint-stylish": "latest",
"karma": "latest",
"karma-babel-preprocessor": "^6.0.1",
"karma-jasmine": "latest",
"karma-ng-html2js-preprocessor": "latest",
"karma-phantomjs-launcher": "latest",
"lazypipe": "latest",
"merge-stream": "latest",
"node-sass": "latest",
"phantomjs-prebuilt": "latest",
"protractor": "latest",
"require-dir": "latest",
"run-sequence": "latest",
"wiredep": "latest",
"yargs": "latest"
},
"dependencies": {
"jira-client": "git+https://github.com/johannesjo/node-jira-client.git",
"moment": "^2.17.1",
"moment-duration-format": "^1.3.0",
"node-notifier": "^4.6.1",
"open": "0.0.5"
}
}