created package.json, main.js and index.html files

This commit is contained in:
Queen Bee 2018-01-05 11:28:01 -08:00
parent b3c993d9e3
commit 0706f8331b
3 changed files with 32 additions and 0 deletions

0
index.html Normal file
View File

9
main.js Normal file
View File

@ -0,0 +1,9 @@
const { app, BrowserWindow } = require('electron');
const path = require('path');
const url = require('url');
let win;
function createWindow() {
win = new BrowserWindow({ width: 800, height: 600 });
}

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "documentit",
"version": "1.0.0",
"description": "tool for documenting online harassment",
"main": "main.js",
"dependencies": {
"electron": "^1.7.10"
},
"devDependencies": {},
"scripts": {
"start": "documentit ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkemmis/documentit.git"
},
"author": "Kathy Kemmis",
"license": "ISC",
"bugs": {
"url": "https://github.com/kkemmis/documentit/issues"
},
"homepage": "https://github.com/kkemmis/documentit#readme"
}