-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "weatherman",
"version": "0.1.0",
"description": "Electron based desktop app that will display current weather",
"main": "app/main.js",
"scripts": {
"postinstall": "mkdir ./app/renderer/css && npm run jshint && npm run style",
"start": "electron .",
"jshint": "jshint . || true",
"style": "node-sass --output-style compact --include-path ./app/scss/includes ./app/scss/main.scss > ./app/renderer/css/main.css",
"test": "echo \"Not implemented\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mister-spock/weatherman.git"
},
"keywords": [
"electron",
"javascript",
"desktop",
"weather",
"widget"
],
"author": "Oleg Kozak",
"license": "MIT",
"bugs": {
"url": "https://github.com/mister-spock/weatherman/issues"
},
"homepage": "https://github.com/mister-spock/weatherman#readme",
"devDependencies": {
"backbone": "^1.3.3",
"electron": "^1.3.5",
"handlebars": "^4.0.5",
"jquery": "^3.1.0",
"jshint": "^2.9.3",
"node-sass": "^3.10.0",
"underscore": "^1.8.3"
}
}