forked from Emerson/Ember-Node-Webkit-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (54 loc) · 1.2 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
{
"name": "node-webkit",
"main": "./dist/index.html",
"APIMethod": "stub",
"version": "0.0.0",
"private": true,
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"start": "./node-webkit.app/Contents/MacOS/node-webkit node-webkit.nw",
"build": "ember build",
"test": "ember test"
},
"window": {
"title": "Super Test",
"toolbar": true,
"frame": true,
"width": 400,
"height": 400,
"position": "center",
"min_width": 400,
"min_height": 400
},
"webkit": {
"plugin": true
},
"repository": {
"type": "git",
"url": "git://github.com/Emerson/Ember-Node-Webkit-Example.git"
},
"engines": {
"node": ">= 0.10.0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"ember-cli": "0.0.22",
"loom-generators-ember-appkit": "~1.0.5",
"originate": "~0.1.5",
"loom": "~3.1.2",
"broccoli-es6-concatenator": "0.1.4",
"broccoli-merge-trees": "0.1.3",
"broccoli": "0.7.2",
"broccoli-static-compiler": "0.1.4",
"broccoli-template": "0.1.0",
"broccoli-uglify-js": "0.1.1",
"broccoli-env": "0.0.1",
"broccoli-replace": "0.1.5",
"gulp": "^3.6.0",
"gulp-shell": "^0.2.4"
}
}