forked from gpinkham/electron-serve
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 792 Bytes
/
package.json
File metadata and controls
51 lines (51 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "electron-serve",
"version": "0.3.0",
"description": "Static file serving for Electron apps",
"license": "MIT",
"repository": "sindresorhus/electron-serve",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"scripts": {
"test": "xo && (cd test && ava) && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"electron",
"serve",
"serving",
"server",
"static",
"file",
"dev",
"development",
"react",
"router",
"web",
"app",
"history",
"pushstate",
"replacestate",
"href",
"url"
],
"devDependencies": {
"ava": "^1.4.1",
"electron": "^3.0.0",
"spectron": "^5.0.0",
"tsd": "^0.7.3",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}