github-desktop/package.json

102 lines
4.1 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
},
"description": "The People's Glorious GitHub Client's build dependencies",
2016-05-11 16:16:32 +00:00
"scripts": {
"test:integration": "cross-env TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 mocha -t 10000 --compilers ts:ts-node/register,tsx:ts-node/register app/test/integration/*.ts",
"test:unit": "cross-env TEST_ENV=1 ELECTRON_NO_ATTACH_CONSOLE=1 electron-mocha -t 10000 --renderer --compilers ts:ts-node/register,tsx:ts-node/register --require ./app/test/globals.ts app/test/unit/*.ts app/test/unit/git/*.ts app/test/unit/main-process/* app/test/unit/*.tsx",
"test": "npm run test:unit && npm run test:integration",
"test:setup": "node script/test-setup",
"test:review": "node script/test-review",
"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-02-07 22:08:45 +00:00
"debug": "cross-env NODE_ENV=development node script/debug",
"compile:dev": "cross-env NODE_ENV=development webpack --config app/webpack.development.js",
"compile:prod": "cross-env NODE_ENV=production webpack --config app/webpack.production.js",
"build:dev": "npm run compile:dev && cross-env NODE_ENV=development node script/build",
"build:prod": "npm run compile:prod && cross-env NODE_ENV=production node script/build",
2016-05-25 15:12:13 +00:00
"package": "node script/package",
"clean": "rimraf build",
2016-05-27 14:14:27 +00:00
"rebuild:dev": "npm run clean && npm run build:dev",
"rebuild:prod": "npm run clean && npm run build:prod",
"clean:tslint": "rimraf tslint-rules/*.js",
"compile:tslint": "tsc -p tslint-rules",
"lint": "npm run compile:tslint && tslint \"./app/src/**/*.ts\" \"./app/src/**/*.tsx\" \"./app/test/**/*.ts\" \"./app/test/**/*.tsx\"",
2016-11-17 13:38:54 +00:00
"publish": "node script/publish",
2016-11-17 13:41:06 +00:00
"clean-slate": "npm run clean && rimraf node_modules app/node_modules && npm install",
2016-11-17 13:47:01 +00:00
"rebuild-hard:dev": "npm run clean-slate && npm run rebuild:dev",
"rebuild-hard:prod": "npm run clean-slate && npm run rebuild:prod"
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": {
"node": ">= 6",
"npm": ">= 3"
2016-05-16 21:22:43 +00:00
},
"dependencies": {
"@niik/tslint-microsoft-contrib": "^2.0.14",
2017-03-07 01:50:43 +00:00
"aws-sdk": "^2.23.0",
2016-05-11 16:16:32 +00:00
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
2016-10-19 00:05:43 +00:00
"chai-datetime": "^1.4.1",
2017-03-07 01:50:43 +00:00
"cross-env": "^3.2.3",
"css-loader": "^0.26.2",
"electron": "1.6.6",
2017-03-06 03:01:02 +00:00
"electron-mocha": "3.3.0",
"electron-packager": "8.6.0",
"electron-winstaller": "2.5.2",
2017-03-06 03:12:05 +00:00
"express": "^4.15.0",
"extract-text-webpack-plugin": "^1.0.1",
2017-03-06 03:22:55 +00:00
"fs-extra": "^2.0.0",
"got": "^6.3.0",
"html-webpack-plugin": "^2.21.0",
"klaw-sync": "^1.1.2",
"mocha": "^3.0.2",
"node-sass": "^3.12.2",
2016-06-07 16:39:03 +00:00
"request": "^2.72.0",
"rimraf": "^2.5.2",
2016-06-16 17:21:57 +00:00
"sass-loader": "^3.2.0",
2017-02-10 15:29:20 +00:00
"spectron": "^3.6.0",
2016-06-16 17:21:57 +00:00
"style-loader": "^0.13.1",
2016-06-15 17:38:56 +00:00
"to-camel-case": "^1.0.0",
2017-01-12 22:21:41 +00:00
"ts-loader": "^1.3.3",
"ts-node": "^1.7.3",
2016-07-28 14:12:28 +00:00
"tslint": "^3.14.0",
2017-04-17 20:38:46 +00:00
"typescript": "2.2.2",
2016-07-28 14:12:33 +00:00
"vrsource-tslint-rules": "^0.12.0",
2016-05-11 16:16:32 +00:00
"webpack": "^1.12.15",
"webpack-dev-middleware": "^1.6.1",
2016-05-27 18:00:25 +00:00
"webpack-hot-middleware": "^2.10.0",
"webpack-target-electron-renderer": "^0.4.0",
"xml2js": "^0.4.16"
2016-08-03 18:00:26 +00:00
},
"devDependencies": {
"@types/chai": "^3.4.30",
2016-10-19 00:05:43 +00:00
"@types/chai-datetime": "0.0.30",
2017-03-06 02:48:23 +00:00
"@types/classnames": "^0.0.32",
2017-03-06 03:07:22 +00:00
"@types/codemirror": "0.0.38",
2017-04-18 09:12:06 +00:00
"@types/electron": "^1.4.36",
2017-01-23 16:58:40 +00:00
"@types/electron-window-state": "^2.0.28",
2016-08-03 18:00:26 +00:00
"@types/event-kit": "^1.2.28",
2017-03-06 03:22:55 +00:00
"@types/fs-extra": "0.0.37",
2017-03-10 14:04:23 +00:00
"@types/keytar": "^3.0.30",
2016-08-03 18:00:26 +00:00
"@types/mocha": "^2.2.29",
"@types/node": "^6.0.31",
2017-03-21 16:18:09 +00:00
"@types/react": "15.0.16",
2017-01-26 19:34:40 +00:00
"@types/react-addons-css-transition-group": "^15.0.1",
"@types/react-addons-test-utils": "^0.14.17",
"@types/react-dom": "^0.14.23",
2016-12-15 15:00:52 +00:00
"@types/react-virtualized": "0.0.3",
2017-04-05 18:47:09 +00:00
"@types/ua-parser-js": "^0.7.30",
"@types/uuid": "^2.0.29",
2017-04-05 19:32:30 +00:00
"@types/winston": "^2.2.0",
"legal-eagle": "^0.14.0"
2016-05-11 16:16:32 +00:00
}
}