-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "your_application_name",
"homepage": "https://USERNAME.github.io/REPO",
"version": "0.1.0",
"author": "Your Name",
"description": "Short description or tagline",
"keywords": [ "A collection", "of", "keywords" ],
"maintainers":[{
"name": "Your Name",
"email": "[email protected]",
"web": "http://yoursite.com"
}],
"repository": [{
"type": "git",
"url": "git://github.com/USERNAME/REPO.git"
}],
"bugs": "https://github.com/USERNAME/REPO/issues",
"license": "MIT",
"main": "index.htm",
"window": {
"title": "Your Application Name",
"icon": "_img/icon32.png",
"toolbar": true,
"resizable": true,
"visible": true,
"transparent": false,
"width": 900,
"height": 550,
"min_width": 400,
"min_height": 200,
"max_width": 8000,
"max_height": 8000,
"position": "center",
"always-on-top": false,
"show_in_taskbar": true,
"fullscreen": false,
"frame": true,
"as_desktop": false
},
"nodejs": true,
"single-instance": true,
"node-main": "_scripts/node.js",
"webkit": {
"page-cache": false,
"java": false,
"plugin": true
},
"dependencies": {
},
"devDependencies": {
"nw": "^0.12.3",
"eslint": "^3.8.1",
"sass-lint": "^1.10.2",
"pre-commit": "^1.1.3"
},
"scripts": {
"start": "nw .",
"lint": "eslint --config=.eslintrc.js _scripts",
"fix": "eslint --fix --config=.eslintrc.js _scripts",
"sasslint": "node sasslinter.js"
}
}