github-desktop/package.json

118 lines
4.9 KiB
JSON
Raw Normal View History

2016-05-11 16:16:32 +00:00
{
2016-05-11 16:43:54 +00:00
"repository": {
2016-05-16 19:00:56 +00:00
"type": "git",
"url": "https://github.com/desktop/desktop.git"
2016-05-11 16:43:54 +00:00
},
2017-05-15 21:18:05 +00:00
"description": "GitHub Desktop build dependencies",
2016-05-11 16:16:32 +00:00
"scripts": {
"cli": "ts-node --require ./app/src/cli/dev-commands-global.js app/src/cli/main.ts",
"test:integration": "cross-env TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 xvfb-maybe mocha -t 10000 --compilers ts:ts-node/register,tsx:ts-node/register app/test/integration/*.ts",
2017-07-28 19:30:00 +00:00
"test:unit": "cross-env GIT_AUTHOR_NAME=\"Joe Bloggs\" GIT_AUTHOR_EMAIL=\"joe.bloggs@somewhere.com\" GIT_COMMITTER_NAME=\"Joe Bloggs\" GIT_COMMITTER_EMAIL=\"joe.bloggs@somewhere.com\" TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 xvfb-maybe electron-mocha -t 10000 --renderer --compilers ts:ts-node/register,tsx:ts-node/register --require ./app/test/globals.ts app/test/unit/*.{ts,tsx} app/test/unit/**/*.{ts,tsx}",
"test": "npm run test:unit && npm run test:integration",
2017-07-26 19:00:57 +00:00
"test:setup": "ts-node script/test-setup.ts",
2017-07-26 19:02:31 +00:00
"test:review": "ts-node script/test-review.ts",
"postinstall": "cd app && npm install && cd .. && git submodule update --recursive --init && npm run compile:tslint",
2016-10-12 23:04:58 +00:00
"start": "cross-env NODE_ENV=development node script/start",
2017-04-17 20:23:45 +00:00
"start:prod": "cross-env NODE_ENV=production node script/start",
2017-02-07 22:08:45 +00:00
"debug": "cross-env NODE_ENV=development node script/debug",
2017-04-17 22:07:17 +00:00
"compile:dev": "cross-env NODE_ENV=development parallel-webpack --config app/webpack.development.js",
"compile:prod": "cross-env NODE_ENV=production parallel-webpack --config app/webpack.production.js",
2017-07-28 12:25:05 +00:00
"build:dev": "npm run compile:dev && cross-env NODE_ENV=development ts-node script/build.ts",
"build:prod": "npm run compile:prod && cross-env NODE_ENV=production ts-node script/build.ts",
2016-05-25 15:12:13 +00:00
"package": "node script/package",
"clean:tslint": "rimraf tslint-rules/*.js",
"compile:tslint": "tsc -p tslint-rules",
"lint": "npm run compile:tslint && tslint \"./app/{src,test}/**/*.{ts,tsx}\"",
2017-06-28 22:58:34 +00:00
"check-prettiness": "node script/is-it-pretty",
2016-11-17 13:38:54 +00:00
"publish": "node script/publish",
"clean-slate": "rimraf out node_modules app/node_modules && npm install",
2017-05-01 01:54:28 +00:00
"rebuild-hard:dev": "npm run clean-slate && npm run build:dev",
2017-06-28 20:57:21 +00:00
"rebuild-hard:prod": "npm run clean-slate && npm run build:prod",
"prettier:base": "prettier --single-quote --trailing-comma es5 --no-semi --write",
"prettify": "npm run prettier:base \"{app/{src,test}/**/*.{ts,tsx,js},app/webpack.*.js,script/!(*.ps1|*.bat|setup-macos-keychain)}\""
2016-05-11 16:16:32 +00:00
},
2017-04-11 15:38:50 +00:00
"author": {
"name": "GitHub, Inc.",
"email": "opensource+desktop@github.com",
"url": "https://desktop.github.com/"
},
2016-05-11 16:16:32 +00:00
"license": "MIT",
"engines": {
2017-05-01 02:18:20 +00:00
"node": ">= 7",
"npm": ">= 4"
2016-05-16 21:22:43 +00:00
},
"dependencies": {
"awesome-typescript-loader": "^3.1.2",
2017-03-07 01:50:43 +00:00
"aws-sdk": "^2.23.0",
"babel-core": "^6.24.1",
"babel-minify": "^0.2.0",
2017-04-18 09:04:19 +00:00
"babel-webpack-plugin": "^0.1.1",
2017-08-21 00:47:41 +00:00
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
2016-10-19 00:05:43 +00:00
"chai-datetime": "^1.4.1",
2017-05-01 01:46:22 +00:00
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.0.5",
2017-08-19 11:12:15 +00:00
"css-loader": "^0.28.5",
2017-08-30 05:04:01 +00:00
"electron": "1.7.5",
"electron-mocha": "^4.0.0",
2017-07-14 12:55:05 +00:00
"electron-packager": "^8.7.2",
2017-07-14 19:25:35 +00:00
"electron-winstaller": "2.5.2",
2017-03-06 03:12:05 +00:00
"express": "^4.15.0",
2017-08-19 11:12:15 +00:00
"extract-text-webpack-plugin": "^3.0.0",
2017-05-05 00:28:34 +00:00
"fs-extra": "^2.1.2",
"html-webpack-plugin": "^2.30.1",
"klaw-sync": "^3.0.0",
2017-05-31 14:40:12 +00:00
"legal-eagle": "0.15.0",
2017-06-21 16:17:56 +00:00
"mocha": "^3.4.2",
2017-04-17 21:50:22 +00:00
"node-native-loader": "^1.1.1",
2017-04-17 20:24:00 +00:00
"node-sass": "^4.5.2",
"octicons": "^6.0.1",
2017-08-19 11:12:15 +00:00
"parallel-webpack": "^2.1.0",
2016-06-07 16:39:03 +00:00
"request": "^2.72.0",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.6",
2017-02-10 15:29:20 +00:00
"spectron": "^3.6.0",
2017-08-19 11:12:15 +00:00
"style-loader": "^0.18.2",
2016-06-15 17:38:56 +00:00
"to-camel-case": "^1.0.0",
2017-04-17 20:24:00 +00:00
"ts-loader": "^2.0.3",
2017-07-12 14:16:56 +00:00
"ts-node": "^3.2.0",
"tslint": "^4.5.1",
"tslint-microsoft-contrib": "^4.0.1",
2017-09-08 13:05:41 +00:00
"typescript": "2.5.2",
2016-07-28 14:12:33 +00:00
"vrsource-tslint-rules": "^0.12.0",
2017-08-19 11:12:15 +00:00
"webpack": "^3.5.5",
"webpack-dev-middleware": "^1.12.0",
2017-04-17 20:24:00 +00:00
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0",
2017-07-31 19:42:19 +00:00
"xml2js": "^0.4.16",
"xvfb-maybe": "^0.2.1"
2016-08-03 18:00:26 +00:00
},
"devDependencies": {
"@types/chai": "^4.0.3",
2016-10-19 00:05:43 +00:00
"@types/chai-datetime": "0.0.30",
"@types/chalk": "^0.4.31",
2017-08-20 00:19:28 +00:00
"@types/classnames": "^2.2.2",
"@types/codemirror": "0.0.45",
2017-08-06 20:35:48 +00:00
"@types/electron-packager": "^8.7.1",
2016-08-03 18:00:26 +00:00
"@types/event-kit": "^1.2.28",
2017-05-05 00:28:34 +00:00
"@types/fs-extra": "2.1.0",
2017-05-02 04:23:25 +00:00
"@types/keytar": "^4.0.0",
2016-08-03 18:00:26 +00:00
"@types/mocha": "^2.2.29",
"@types/mri": "^1.1.0",
"@types/node": "^7.0.18",
"@types/react": "15.0.31",
"@types/react-addons-test-utils": "0.14.19",
"@types/react-dom": "15.5.1",
"@types/react-transition-group": "1.1.1",
"@types/react-virtualized": "9.7.2",
"@types/strip-ansi": "^3.0.0",
2017-08-29 05:55:42 +00:00
"@types/temp": "^0.8.29",
2017-04-05 18:47:09 +00:00
"@types/ua-parser-js": "^0.7.30",
2017-08-20 00:19:28 +00:00
"@types/uuid": "^3.4.0",
"@types/winston": "^2.2.0",
2017-09-05 03:20:08 +00:00
"prettier": "^1.6.1",
"tslint-config-prettier": "^1.1.0",
"tslint-react": "^3.0.0"
}
2016-05-11 16:16:32 +00:00
}