forge/package.json

68 строки
1.7 KiB
JSON
Исходник Обычный вид История

2016-10-05 17:42:02 +03:00
{
"name": "electron-forge",
2016-12-03 14:14:13 +03:00
"version": "0.0.5",
2016-10-05 17:42:02 +03:00
"description": "A complete tool for building modern Electron applications",
"main": "index.js",
"bin": {
"electron-forge": "dist/electron-forge.js",
"forge": "dist/electron-forge.js"
2016-10-05 17:42:02 +03:00
},
"scripts": {
"build": "gulp build",
2016-12-03 09:13:55 +03:00
"lint": "eslint src test",
2016-10-05 18:11:03 +03:00
"prepublish": "npm run build",
2016-12-03 12:52:39 +03:00
"test": "npm run lint && mocha test --compilers js:babel-register --timeout=300000",
2016-10-05 17:42:02 +03:00
"watch": "gulp watch"
},
"author": "Samuel Attard",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-module-method": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
2016-10-05 17:50:40 +03:00
"chai": "^3.5.0",
2016-10-05 17:42:02 +03:00
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
2016-10-05 18:12:00 +03:00
"eslint-plugin-import": "^1.16.0",
2016-10-05 17:42:02 +03:00
"gulp": "^3.9.1",
2016-10-05 17:50:40 +03:00
"gulp-babel": "^6.1.2",
2016-12-03 12:09:57 +03:00
"mocha": "^3.2.0"
2016-10-05 17:42:02 +03:00
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"syntax-async-functions",
[
"transform-async-to-module-method",
{
"module": "bluebird",
"method": "coroutine"
}
]
]
},
"dependencies": {
"asar": "^0.12.3",
2016-12-03 09:22:25 +03:00
"babel-register": "^6.16.3",
2016-10-05 17:42:02 +03:00
"bluebird": "^3.4.6",
"colors": "^1.1.2",
"commander": "^2.9.0",
"fs-promise": "^0.5.0",
"inquirer": "^1.2.1",
"log-symbols": "^1.0.2",
"mkdirp": "^0.5.1",
"ora": "^0.3.0",
"pify": "^2.3.0",
2016-12-03 12:09:57 +03:00
"rimraf": "^2.5.4",
2016-10-05 17:42:02 +03:00
"semver": "^5.3.0",
"username": "^2.2.2",
"yarn-or-npm": "^2.0.2",
"zip-folder": "^1.0.0"
2016-10-05 17:42:02 +03:00
}
}