mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 01:54:40 +08:00
1f2370c2a9
Summary: build-client, aka packaging, aka bundling is now separate from uploading. This is both to compartmentalize our tasks a bit more and so we can add a non-grunt windows task inbetween packaging and uploading. No more heavily-overloaded PUBLISH_BUILD flag. Added SIGN_BUILD flag instead. No more TRAVIS and TRAVIS_PULL_REQUEST flag. Test Plan: Manual Reviewers: halla, juan, spang Reviewed By: juan, spang Differential Revision: https://phab.nylas.com/D4208
72 lines
2.8 KiB
JSON
72 lines
2.8 KiB
JSON
{
|
|
"name": "nylas-mail-all",
|
|
"version": "0.0.1",
|
|
"description": "All components required to run Nylas Mail",
|
|
"devDependencies": {
|
|
"babel-cli": "6.x.x",
|
|
"babel-core": "6.x.x",
|
|
"babel-eslint": "7.1.0",
|
|
"babel-preset-electron": "1.4.15",
|
|
"babel-preset-react": "6.x.x",
|
|
"chalk": "1.x.x",
|
|
"coffeelint-cjsx": "2.x.x",
|
|
"commander": "^2.9.0",
|
|
"electron-installer-dmg": "0.2.x",
|
|
"electron-packager": "8.4.x",
|
|
"electron-winstaller": "2.x.x",
|
|
"eslint": "3.10.1",
|
|
"eslint-config-airbnb": "13.0.0",
|
|
"eslint-plugin-import": "2.2.0",
|
|
"eslint-plugin-jsx-a11y": "2.2.3",
|
|
"eslint-plugin-react": "6.7.1",
|
|
"eslint_d": "4.2.0",
|
|
"fs-extra": "2.x.x",
|
|
"fs-plus": "2.x.x",
|
|
"glob": "7.x.x",
|
|
"grunt": "0.4.x",
|
|
"grunt-cli": "0.1.x",
|
|
"grunt-coffeelint": "git+https://github.com/atom/grunt-coffeelint.git#cfb99aa99811d52687969532bd5a98011ed95bfe",
|
|
"grunt-coffeelint-cjsx": "0.1.x",
|
|
"grunt-contrib-coffee": "0.12.x",
|
|
"grunt-contrib-csslint": "0.5.x",
|
|
"grunt-contrib-less": "0.8.x",
|
|
"grunt-lesslint": "0.13.x",
|
|
"jasmine": "2.x.x",
|
|
"lerna": "emorikawa/lerna#v2.0.0-beta.38.forked",
|
|
"load-grunt-parent-tasks": "0.1.1",
|
|
"mkdirp": "^0.5.1",
|
|
"pm2": "2.4.0",
|
|
"request": "2.x.x",
|
|
"s3": "4.x.x",
|
|
"temp": "0.8.x",
|
|
"underscore": "1.8.x"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run client",
|
|
"test": "npm run test-client && npm run test-cloud",
|
|
"client": "packages/client-app/node_modules/.bin/electron packages/client-app --enable-logging --dev",
|
|
"test-client": "packages/client-app/node_modules/.bin/electron packages/client-app --enable-logging --test",
|
|
"test-client-window": "packages/client-app/node_modules/.bin/electron packages/client-app --enable-logging --test=window",
|
|
"test-client-junit": "",
|
|
"build-client": "grunt build-client --gruntfile=packages/client-app/build/Gruntfile.js --base=./",
|
|
"upload-client": "grunt upload-client --gruntfile=packages/client-app/build/Gruntfile.js --base=./",
|
|
"cloud": "pm2 stop all; pm2 delete all; pm2 start packages/cloud-core/pm2-dev.yml --no-daemon",
|
|
"cloud-debug": "pm2 stop all; pm2 delete all; pm2 start packages/cloud-core/pm2-debug-cloud-api.yml --no-daemon",
|
|
"test-cloud": "cd packages/cloud-api && npm test && cd ../cloud-core && npm test && cd ../cloud-workers && npm test && cd ../isomorphic-core && npm test",
|
|
"stop": "npm run stop-cloud",
|
|
"stop-cloud": "pm2 stop all; pm2 delete all;",
|
|
"build-cloud": "docker build .",
|
|
"postinstall": "babel-node scripts/postinstall.es6",
|
|
"daily": "babel-node scripts/daily.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nylas/nylas-mail-all.git"
|
|
},
|
|
"author": "Nylas",
|
|
"license": "proprietary",
|
|
"engines": {
|
|
"node": "6.9.1",
|
|
"npm": "3.10.8"
|
|
}
|
|
}
|