-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.39 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
{
"name": "pebblepoint-server",
"version": "0.5.0",
"description": "Server to allow PebblePoint to control PowerPoint on OS X",
"keywords": [
"pebble",
"PowerPoint",
"presentation",
"presenter",
"slides",
"Mac",
"OS X"
],
"homepage": "https://github.com/rjacoby/pebblepoint_server/",
"bugs": {
"url": "https://github.com/rjacoby/pebblepoint_server/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rjacoby/pebblepoint_server/master/LICENSE-MIT"
}
],
"author": {
"name": "Rafi Jacoby",
"email": "[email protected]"
},
"bin": {
"pebblepoint-server": "./cli.sh"
},
"repository": {
"type": "git",
"url": "[email protected]:rjacoby/pebblepoint_server.git"
},
"scripts": {
"start": "node ./app.coffee"
},
"dependencies": {
"applescript": "^0.2.1",
"body-parser": "~1.0.0",
"coffee-script": "^1.7.1",
"debug": "^1.0.2",
"ejs": "^1.0.0",
"express": "~4.0.0",
"morgan": "~1.0.0"
},
"engines": {
"node": ">=0.10"
},
"os": [
"darwin"
],
"preferGlobal": true,
"main": "main.js",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-coffee": "^0.10.1",
"grunt-exec": "^0.4.6",
"grunt-contrib-compress": "^0.10.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-download-atom-shell": "^0.8.1"
}
}