forked from tableflip/nodebot-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.35 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": "taller-nodebots",
"version": "1.0.1",
"description": "Un taller de nodebots que pondrá tu ardunio en marcha con johnny-five",
"main": "nodebot-workshop.js",
"scripts": {
"start": "./nodebot-workshop.js",
"test": "gulp",
"lint": "jshint exercises tests stubs *.js"
},
"bin": {
"taller-nodebots": "./nodebot-workshop.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nodebotsES/taller-nodebots"
},
"keywords": [
"nodeschool",
"johnny-five",
"nodebot",
"arduino",
"taller",
"nodebots",
"robots"
],
"contributors": [
"olizilla",
"_alanshaw",
"achingbrain",
"gorhgorh",
"n0bisuke",
"markpete"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/nodebotsES/taller-nodebots/issues"
},
"dependencies": {
"async": "^2.6.0",
"dnode": "^1.2.2",
"ioboard": "^3.0.0",
"johnny-five": "^0.14.1",
"proxyquire": "^2.0.0",
"sinon": "^4.4.2",
"workshopper-adventure": "^6.0.3",
"workshopper-exercise": "^3.0.1"
},
"optionalDependencies": {
"node-notifier": "^5.2.1"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-jshint": "^2.1.0",
"gulp-shell": "^0.6.5",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint",
"test"
]
}