-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 792 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 792 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
32
33
34
35
36
37
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dev/"
]
},
"scripts": {
"start": "electron .",
"test": "jest",
"babel": "babel --presets es2015 script.js -o build/main.bundle.js"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"electron": "^3.0.3",
"jest": "^23.5.0"
},
"dependencies": {
"python-shell": "^1.0.6"
}
}