forked from vamsi008/MarkDownEditor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 KB
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
{
"name": "Marvelous",
"description": "Markdown editor for the future",
"version": "0.0.1",
"author": "Team LeanTaaS <leantaas@imaginea.com>",
"contributors": [
{
"name": "Vamsi Chava",
"email": "vamsi.chava@imaginea.com"
},
{
"name": "Kiran Danduprolu",
"email": "kiran.d@imaginea.com"
},
{
"name": "Sudhir Chokkakula",
"email": "sudhir.chokkakula@imaginea.com"
},
{
"name": "Srikanth Pothkanuri",
"email": "srikanth.p@imaginea.com"
},
{
"name": "Praveen Puglia",
"email": "praveen.puglia@imaginea.com"
}
],
"bugs": {
"url": "https://github.com/hashd/Marvelous/issues"
},
"devDependencies": {
"electron-packager": "^5.0.0",
"electron-prebuilt": "^0.29.1",
"gulp": "^3.9.0",
"gulp-eslint": "^0.15.0",
"gulp-zip": "^3.0.2",
"mkdirp": "~0.5.1"
},
"keywords": [
"atom-shell",
"electron",
"markdown",
"editor"
],
"license": "MIT",
"main": "index.js",
"private": true,
"scripts": {
"start": "electron .",
"build": "electron-packager . Marvelous --platform=linux --arch=all --version=0.29.2 --icon=app/img/marvelous.svg --out=./build/ --overwrite && gulp release:linux",
"test": "echo \"Error: no test specified\" && exit 1"
}
}