forge/package.json

80 строки
1.9 KiB
JSON

{
"name": "electron-forge",
"version": "0.0.5",
"description": "A complete tool for building modern Electron applications",
"main": "index.js",
"bin": {
"electron-forge": "dist/electron-forge.js",
"forge": "dist/electron-forge.js"
},
"scripts": {
"build": "gulp build",
"precommit": "npm run lint",
"commit": "git-cz",
"lint": "eslint src test",
"prepublish": "npm run build",
"test": "npm run lint && mocha test --compilers js:babel-register --timeout=300000",
"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",
"chai": "^3.5.0",
"commitizen": "^2.8.6",
"cz-customizable": "4.0.0",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^3.2.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime",
"syntax-async-functions",
[
"transform-async-to-module-method",
{
"module": "bluebird",
"method": "coroutine"
}
]
]
},
"dependencies": {
"asar": "^0.12.3",
"babel-register": "^6.16.3",
"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",
"rimraf": "^2.5.4",
"semver": "^5.3.0",
"username": "^2.2.2",
"yarn-or-npm": "^2.0.2",
"zip-folder": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz.js"
}
}
}