-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
37 lines (37 loc) · 1.29 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
{
"name": "iStats",
"version": "1.4.0",
"description": "Display system stats on your menubar",
"main": "main.js",
"scripts": {
"start": "NODE_ENV=dev grunt & electron .",
"clean": "rm -r iStats-darwin-x64",
"build": "electron-packager . iStats --platform=darwin --arch=x64 --version=1.3.1 --icon=images/Icon.icns --ignore='node_modules/(electron-packager|electron-prebuilt|git-grunt|publish-release|grunt.*)'",
"zip": "cd iStats-darwin-x64 && zip -ryX iStats-darwin-x64.zip iStats.app",
"publish": "publish-release --template notes.md --assets iStats-darwin-x64/iStats-darwin-x64.zip",
"release": "npm run clean && npm run build && npm run zip && npm run publish"
},
"repository": {
"type": "git",
"url": "https://github.com/ningt/iStats.git"
},
"author": "Tang Ning",
"license": "ISC",
"dependencies": {
"highcharts": "5.0.6",
"menubar": "5.1.0",
"os-usage": "git+https://github.com/ningt/os-usage.git",
"photon": "git+https://github.com/connors/photon.git",
"ractive": "0.7.3"
},
"devDependencies": {
"electron": "1.3.1",
"electron-packager": "8.4.0",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-less": "1.4.0",
"grunt-contrib-watch": "1.0.0",
"jit-grunt": "0.10.0",
"publish-release": "1.3.2"
}
}