forked from scout-app/scout-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.71 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
{
"name": "scout-app",
"homepage": "http://scout-app.io",
"version": "2.18.16",
"author": "The Jared Wilcurt, Zach Dennis",
"description": "A cross platform desktop application for processing Sass to CSS.",
"keywords": [
"Sass",
"SCSS",
"CSS",
"Preprocessor",
"Cross-Platform",
"Desktop App",
"GUI",
"SassC",
"Node-Sass"
],
"maintainers": [
{
"name": "The Jared Wilcurt",
"email": "[email protected]",
"web": "https://github.com/TheJaredWilcurt"
},
{
"name": "Zach Dennis",
"email": "[email protected]",
"web": "https://github.com/zdennis"
}
],
"repository": [
{
"type": "git",
"url": "git://github.com/scout-app/scout-app.git"
}
],
"bugs": "https://github.com/scout-app/scout-app/issues",
"main": "scout-files/index.html",
"window": {
"title": "Scout-App: The Sass GUI",
"icon": "scout-files/_img/logo_32.png",
"toolbar": false,
"resizable": true,
"visible": true,
"transparent": false,
"width": 784,
"height": 611,
"min_width": 650,
"min_height": 300,
"max_width": 8000,
"max_height": 8000,
"position": "center",
"always-on-top": false,
"show_in_taskbar": true,
"fullscreen": false,
"frame": true,
"as_desktop": false
},
"nodejs": true,
"single-instance": true,
"node-main": "scout-files/_scripts/node.js",
"webkit": {
"page-cache": false,
"java": false,
"plugin": true
},
"dependencies": {
"node-sass": "^4.x.x",
"chokidar": "^2.x.x",
"fs-extra": "^1.x.x",
"jquery": "^3.x.x",
"components-jqueryui": "1.12.1",
"bootstrap": "3.2.0",
"bootstrap-slider": "^8.x.x",
"countup.js": "latest",
"awesome-sass-easing": "latest",
"bi-app-sass": "latest",
"bluejay": "latest",
"bourbon": "latest",
"bourbon-neat": "latest",
"compass-mixins": "0.12.10",
"cssowl": "owl-stars/cssowl#1.3.1",
"family.scss": "latest",
"meyer-sass": "latest",
"normalize.css": "latest",
"pineapple-sass": "latest",
"sass-rem": "latest",
"sassier-buttons": "latest",
"scut": "latest",
"sierra-library": "latest",
"spice-sass": "latest",
"susy": "latest",
"typesettings": "latest"
},
"devDependencies": {
"nw": "^0.12.3",
"eslint": "^4.x.x",
"sass-lint": "^1.x.x",
"google-translate-api": "^2.x.x",
"pre-commit": "^1.x.x",
"7zip-bin": "^2.x.x",
"csvtojson": "^1.x.x"
},
"scripts": {
"start": "nw .",
"installer": "npm install --loglevel=error",
"postinstall": "node postinstall.js && node update-bindings.js",
"lint": "eslint --config=.eslintrc.js scout-files/_scripts build.js cultures.js translate.js translate2.js postinstall.js update-bindings.js",
"fix": "eslint --fix --config=.eslintrc.js scout-files/_scripts build.js cultures.js translate.js translate2.js postinstall.js update-bindings.js",
"sasslint": "node sasslinter.js",
"cultures": "node cultures.js",
"translations": "node cultures.js",
"build": "node build.js"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/scout-app/scout-app/blob/master/License"
}
],
"pre-commit": [
"lint",
"sasslint"
]
}