-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
33 lines (33 loc) · 903 Bytes
/
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
{
"name": "notedly-desktop",
"version": "0.1.0",
"description": "An Electron client example for the JavaScript Everywhere book",
"main": "src/index.js",
"scripts": {
"start": "electron src/index.js",
"final": "electron final/index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascripteverywhere/desktop.git"
},
"author": "Adam Scott <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/javascripteverywhere/desktop/issues"
},
"homepage": "https://jseverywhere.io",
"devDependencies": {
"electron": "6.0.0",
"electron-builder": "21.2.0",
"eslint": "6.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.18.2"
},
"dependencies": {
"electron-util": "0.12.1"
}
}