-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 629 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 629 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
{
"name": "electron-demo",
"private": true,
"main": "main.js",
"scripts": {
"build": "browserify -x electron renderer.js > renderer-bundle.js",
"start": "npm run build && electron .",
"test": "standard && hallmark"
},
"dependencies": {
"electron": "^21.0.1",
"level": "^8.0.0",
"many-level": "^2.0.0",
"readable-stream": "^4.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"hallmark": "^4.0.0",
"standard": "^17.0.0"
},
"repository": "Level/electron-demo",
"homepage": "https://github.com/Level/electron-demo",
"keywords": [
"level",
"electron"
]
}