forked from sindresorhus/generator-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.04 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.04 KB
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
52
53
54
55
{
"name": "generator-electron-extra",
"version": "1.12.1",
"description": "Scaffold out an Electron app boilerplate with sass, webpack, and browsersync",
"license": "MIT",
"repository": "vanntastic/generator-electron",
"author": {
"name": "Sindre Sorhus / Vann Ek",
"email": "ek.vann@gmail.com",
"url": "innerfusion.net"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && mocha"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"boilerplate",
"template",
"scaffold",
"node",
"desktop",
"app",
"application",
"electron",
"atom-shell"
],
"dependencies": {
"humanize-url": "^1.0.1",
"mkdirp": "^0.5.1",
"normalize-url": "^1.2.0",
"superb": "^1.1.3",
"underscore.string": "^3.0.3",
"yeoman-generator": "^0.20.1"
},
"devDependencies": {
"mocha": "*",
"xo": "*",
"yeoman-assert": "^2.0.0"
},
"xo": {
"envs": [
"node",
"mocha"
],
"ignores": [
"app/templates/**"
]
}
}