-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 834 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 834 Bytes
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
{
"name": "Scheduler",
"version": "1.0.0",
"main": "./main.js",
"description": "An academic schedule organizer",
"scripts": {
"start": "electron .",
"test": "node-qunit-phantomjs ./app/tests/tests.html",
"build": "electron-packager ./ Scheduler --out ~/Desktop/Scheduler --platform=darwin --arch=x64 --version 0.36.2 --overwrite --icon=./app/img/app-icon.icns"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdkato/scheduler.git"
},
"bugs": {
"url": "https://github.com/jdkato/scheduler/issues"
},
"author": "Joseph Kato",
"license": "MIT",
"devDependencies": {
"electron-packager": "^5.2.0",
"electron-prebuilt": "^0.36.2",
"node-qunit-phantomjs": "^1.3.0"
},
"dependencies": {
"nconf": "^0.7.2"
}
}