-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.25 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
{
"name": "d3-space-filler-explorer",
"version": "1.0.0",
"description": "An Electron application that visualizes disk space with D3 treemap and pie chart layouts.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UsabilityEtc/d3-space-filler-explorer.git"
},
"author": {
"name": "Jeffrey Morgan",
"email": "usabilityetc@gmail.com",
"url": "http://usabilityetc.com"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"package-osx": "electron-packager ./ SpaceFillerExplorer --platform=darwin --arch=x64 --icon=app/icons/Icon.icns --version=0.30.4 --ignore=node_modules/electron-* --overwrite",
"package-linux": "electron-packager ./ SpaceFillerExplorer --platform=linux --arch=x64 --version=0.30.4 --ignore=node_modules/electron-* --overwrite"
},
"keywords": [
"electron",
"files",
"directories",
"visualization",
"treemap",
"pie chart",
"D3"
],
"devDependencies": {
"electron-packager": "^7.0.0",
"electron-prebuilt": "^0.30.4",
"numeral": "^1.5.3"
},
"dependencies": {
"async": "^1.4.2",
"d3": "^3.5.6",
"file-size-tree-js": "^1.0.0",
"jquery": "^3.0.0",
"nodejs-disks": "^0.2.1",
"underscore": "^1.8.3"
}
}