This repository was archived by the owner on Mar 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.39 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
{
"name": "shots",
"version": "1.1.0",
"description": "An application for creating screenshots",
"main": "main.js",
"license": "NPOSL-3.0",
"author": "Victor Pasynok <binjospookie@gmail.com>",
"email": "binjospookie@gmail.com",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"compile": "rimraf build/out",
"pack": "npm run compile && build --dir",
"dist": "npm run compile && build",
"release": "npm run compile && build"
},
"build": {
"appId": "org.binjo.shots",
"category": "graphics",
"build.mac.category": "shots.graphics",
"maintainer": "Victor Pasynok",
"copyright": "Copyright © 2017 Viktor Pasynok",
"linux": {
"target": [
"AppImage", "deb"
],
"category": "Graphics",
"packageCategory": "graphics",
"synopsis": "Simple, minimal, and task-focused application for creating screenshots."
}
},
"bugs": {
"url": "https://github.com/binjospookie/--shots/issues"
},
"homepage": "http://shots.binjo.ru/",
"devDependencies": {
"electron": "^1.6.0",
"electron-builder": "^13.0.0",
"gulp-postcss": "^6.3.0",
"is-online": "^6.0.1",
"postcss": "^5.2.5",
"postcss-scss": "^0.4.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"gulp": "^3.9.1",
"is-online": "^6.0.1",
"minimist": "^1.2.0",
"precss": "^1.4.0",
"stylelint": "^7.5.0"
}
}