-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.55 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "electrifyjs",
"version": "0.5.4",
"description": "A scaffolding tool for making desktop apps from websites.",
"main": "dist/index.js",
"files": [
"src",
"template",
"dist"
],
"scripts": {
"lint": "xo",
"precommit": "yarn lint",
"prepush": "yarn lint",
"start": "babel ./src -d ./dist -w",
"build": "babel ./src -d ./dist",
"clean": "rimraf ./dist",
"prepublish": "yarn lint && yarn run clean && yarn run build"
},
"bin": {
"electrify": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiqueras/electrify.git"
},
"keywords": [
"Electron",
"Generator",
"Boilerplate",
"Desktop",
"App"
],
"author": "epiqueras",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiqueras/electrify/issues"
},
"homepage": "https://github.com/epiqueras/electrify#readme",
"xo": {
"ignores": [
"template/**"
],
"semicolon": false,
"space": 2,
"rules": {
"curly": [
"error",
"multi-line"
],
"object-curly-spacing": [
"error",
"always"
],
"comma-dangle": [
"error",
"always-multiline"
],
"no-return-assign": "off",
"import/no-unassigned-import": "off"
}
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0",
"husky": "^0.13.3",
"rimraf": "^2.6.1",
"xo": "^0.18.1"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"colors": "^1.1.2",
"prompt": "^1.0.0"
}
}