forked from balena-io/etcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "etcher",
"displayName": "Etcher",
"version": "1.0.0",
"updates": {
"sleepDays": 7,
"semverRange": "<2.0.0"
},
"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",
"gypfile": true,
"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/shared tests/child-writer tests/image-stream -R spec",
"sass": "node-sass ./lib/gui/scss/main.scss > ./lib/gui/css/main.css",
"cpplint": "cpplint --recursive src",
"jslint": "eslint lib tests scripts bin versionist.conf.js",
"sasslint": "sass-lint lib/gui/scss",
"htmllint": "node scripts/html-lint.js",
"codespell": "codespell.py --skip *.gz,*.bz2,*.xz,*.zip,*.img,*.dmg,*.iso,*.rpi-sdcard,.DS_Store lib tests docs scripts Makefile *.md LICENSE",
"lint": "npm run jslint && npm run sasslint && npm run cpplint && npm run codespell && npm run htmllint",
"changelog": "versionist",
"start": "electron lib/start.js",
"preshrinkwrap": "node ./scripts/clean-shrinkwrap.js",
"configure": "node-gyp configure",
"build": "node-gyp build",
"install": "node-gyp rebuild"
},
"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",
"appdmg"
],
"builder": {
"win": {
"title": "Etcher",
"version": "v1.0.0",
"publisher": "Resin.io",
"icon": "assets/icon.ico",
"verbosity": 1
}
},
"dependencies": {
"angular": "1.6.3",
"angular-if-state": "^1.0.0",
"angular-middle-ellipses": "^1.0.0",
"angular-moment": "^1.0.1",
"angular-seconds-to-date": "^1.0.0",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-router": "^0.4.2",
"bindings": "^1.2.1",
"bluebird": "^3.0.5",
"bootstrap-sass": "^3.3.5",
"chalk": "^1.1.3",
"command-join": "^2.0.0",
"drivelist": "^5.0.20",
"electron-is-running-in-asar": "^1.0.0",
"etcher-image-write": "^9.1.3",
"file-type": "^4.1.0",
"flexboxgrid": "^6.3.0",
"immutable": "^3.8.1",
"lodash": "^4.5.1",
"lzma-native": "^1.5.2",
"mime-types": "^2.1.15",
"mountutils": "^1.0.6",
"nan": "^2.3.5",
"node-ipc": "^8.9.2",
"node-stream-zip": "^1.3.4",
"path-is-inside": "^1.0.2",
"prop-types": "^15.5.4",
"react": "15.5.4",
"react-dom": "15.5.4",
"react2angular": "1.1.3",
"redux": "^3.5.2",
"redux-localstorage": "^0.4.1",
"request": "^2.81.0",
"resin-cli-form": "^1.4.1",
"resin-cli-visuals": "^1.3.1",
"resin-corvus": "^1.0.0-beta.26",
"rx": "^4.1.0",
"semver": "^5.1.0",
"sudo-prompt": "^6.1.0",
"trackjs": "^2.1.16",
"udif": "^0.9.0",
"unbzip2-stream": "^1.0.11",
"uuid": "^3.0.1",
"xml2js": "^0.4.17",
"yargs": "^4.6.0",
"yauzl": "^2.6.0"
},
"devDependencies": {
"angular-mocks": "1.6.3",
"asar": "^0.10.0",
"browserify": "github:jviotti/node-browserify#dynamic-dirname-filename",
"electron": "1.6.6",
"electron-builder": "^2.6.0",
"electron-mocha": "^3.1.1",
"electron-packager": "^7.0.1",
"eslint": "^3.16.1",
"eslint-plugin-lodash": "^2.3.5",
"file-exists": "^1.0.0",
"html-angular-validate": "^0.1.9",
"mochainon": "^1.0.0",
"nock": "^9.0.9",
"node-gyp": "^3.5.0",
"node-sass": "^3.8.0",
"sass-lint": "^1.10.2",
"tmp": "0.0.31",
"versionist": "^2.1.0"
}
}