mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-20 05:17:18 +00:00
116 lines
3.4 KiB
JSON
116 lines
3.4 KiB
JSON
{
|
|
"name": "etcher",
|
|
"displayName": "Etcher",
|
|
"version": "1.0.0-beta.18",
|
|
"main": "lib/start.js",
|
|
"description": "Flash OS images to SD cards & USB drives, safely and easily.",
|
|
"productDescription": "Etcher is a powerful OS image flasher built with web technologies to ensure flashing an SDCard or USB drive is a pleasant and safe experience. It protects you from accidentally writing to your hard-drives, ensures every byte of data was written correctly and much more.",
|
|
"homepage": "https://github.com/resin-io/etcher",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:resin-io/etcher.git"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run lint && electron-mocha --recursive --renderer tests/gui -R spec && electron-mocha --recursive tests/cli tests/shared -R spec",
|
|
"sass": "node-sass ./lib/gui/scss/main.scss > ./lib/gui/css/main.css",
|
|
"jslint": "eslint lib tests scripts bin versionist.conf.js",
|
|
"scsslint": "scss-lint lib/gui/scss",
|
|
"lint": "npm run jslint && npm run scsslint",
|
|
"changelog": "versionist",
|
|
"start": "electron lib/start.js",
|
|
"shrinkwrap": "node ./scripts/shrinkwrap.js"
|
|
},
|
|
"author": "Juan Cruz Viotti <juan@resin.io>",
|
|
"license": "Apache-2.0",
|
|
"copyright": "Copyright 2016 Resinio Ltd",
|
|
"companyName": "Resinio Ltd",
|
|
"packageIgnore": [
|
|
"LICENSE",
|
|
"Makefile",
|
|
"(.*)\\.pem",
|
|
"(.*)\\.p12",
|
|
"(.*)\\.log",
|
|
"assets/osx",
|
|
"appveyor.yml",
|
|
"bower.json",
|
|
"screenshot.png",
|
|
"tests",
|
|
"etcher-release",
|
|
"lib/scss",
|
|
"bin/etcher"
|
|
],
|
|
"shrinkwrapIgnore": [
|
|
"macos-alias",
|
|
"fs-xattr",
|
|
"ds-store",
|
|
"diskpart",
|
|
"appdmg"
|
|
],
|
|
"builder": {
|
|
"win": {
|
|
"title": "Etcher",
|
|
"version": "v1.0.0-beta.18",
|
|
"publisher": "Resin.io",
|
|
"icon": "assets/icon.ico",
|
|
"verbosity": 1
|
|
}
|
|
},
|
|
"optionalDependencies": {
|
|
"elevator": "^2.1.0",
|
|
"removedrive": "^1.1.1"
|
|
},
|
|
"dependencies": {
|
|
"angular": "^1.5.3",
|
|
"angular-if-state": "^1.0.0",
|
|
"angular-middle-ellipses": "^1.0.0",
|
|
"angular-moment": "^1.0.0-beta.6",
|
|
"angular-seconds-to-date": "^1.0.0",
|
|
"angular-ui-bootstrap": "^1.3.2",
|
|
"angular-ui-router": "^0.2.18",
|
|
"bluebird": "^3.0.5",
|
|
"bootstrap-sass": "^3.3.5",
|
|
"chalk": "^1.1.3",
|
|
"drivelist": "^5.0.6",
|
|
"electron-is-running-in-asar": "^1.0.0",
|
|
"etcher-image-stream": "^5.1.0",
|
|
"etcher-image-write": "^9.0.0",
|
|
"etcher-latest-version": "^1.0.0",
|
|
"file-tail": "^0.3.0",
|
|
"flexboxgrid": "^6.3.0",
|
|
"immutable": "^3.8.1",
|
|
"is-elevated": "^1.0.0",
|
|
"lodash": "^4.5.1",
|
|
"node-ipc": "^8.9.2",
|
|
"redux": "^3.5.2",
|
|
"redux-localstorage": "^0.4.1",
|
|
"resin-cli-form": "^1.4.1",
|
|
"resin-cli-visuals": "^1.2.8",
|
|
"rx": "^4.1.0",
|
|
"semver": "^5.1.0",
|
|
"sudo-prompt": "^6.1.0",
|
|
"tail": "^1.1.0",
|
|
"trackjs": "^2.1.16",
|
|
"username": "^2.1.0",
|
|
"yargs": "^4.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"angular-mocks": "^1.4.7",
|
|
"browserify": "^13.0.1",
|
|
"cz-conventional-changelog": "^1.1.6",
|
|
"electron-builder": "^2.6.0",
|
|
"electron-mocha": "^3.1.1",
|
|
"electron-packager": "^7.0.1",
|
|
"electron-prebuilt": "1.4.4",
|
|
"eslint": "^2.13.1",
|
|
"jsonfile": "^2.3.1",
|
|
"mochainon": "^1.0.0",
|
|
"node-sass": "^3.8.0",
|
|
"versionist": "^2.1.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|