-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "pongbot",
"version": "0.0.1",
"description": "Software for the Intel Edison to record Table Tennis games.",
"main": "main/pongbot.js",
"author": {
"name": "Jacob M. Roufa <[email protected]>",
"email": "[email protected]"
},
"license": "MIT",
"private": "true",
"dependencies": {
"bookshelf": "^0.8.0",
"edison-io": "^0.8.1",
"johnny-five": "^0.8.43",
"knex": "^0.8.3",
"sqlite3": "^3.0.5"
},
"devDependencies": {
"glob": "^4.3.2",
"grunt": "^0.4.5",
"grunt-available-tasks": "^0.5.4",
"grunt-concurrent": "^0.5.0",
"grunt-contrib-jasmine": "^0.8.2",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-jscs": "^1.1.0",
"grunt-npm-install": "^0.1.0",
"jasmine": "^2.2.1",
"jshint-stylish": "^0.4.0",
"jshint-stylish-ex": "^0.2.0",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.4.0",
"underscore": "^1.7.0"
},
"keywords": [
"intel edison",
"edison",
"edison-io",
"robot",
"nodebot",
"johnny-five",
"ping pong",
"pong",
"table tennis"
],
"scripts": {
"start": "node index.js",
"debug": "node --debug-brk index.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}