-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
64 lines (64 loc) · 1.38 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": "nodebot-workshop",
"version": "3.2.1",
"description": "A nodeschool workshop that will make your Ardunio alive with johnny-five",
"main": "nodebot-workshop.js",
"scripts": {
"start": "./nodebot-workshop.js",
"test": "gulp",
"lint": "jshint exercises tests stubs *.js"
},
"bin": {
"nodebot-workshop": "./nodebot-workshop.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tableflip/nodebot-workshop"
},
"keywords": [
"nodeschool",
"johnny-five",
"nodebot",
"arduino",
"workshop",
"workshopper",
"life is not a malfuction"
],
"contributors": [
"olizilla",
"_alanshaw",
"achingbrain",
"gorhgorh",
"n0bisuke",
"markpete"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/tableflip/nodebot-workshop/issues"
},
"dependencies": {
"async": "^3.1.0",
"dnode": "^1.2.2",
"ioboard": "^3.0.0",
"johnny-five": "^1.3.0",
"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": "^4.0.2",
"gulp-jshint": "^2.1.0",
"gulp-shell": "^0.7.1",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint",
"test"
]
}