-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "Eurobot-core",
"version": "1.0.0",
"description": "Nodejs core embedded on a linux board of our main robot for Eurobot Challenge",
"scripts": {
"start": "iojs build/src/main.js",
"deploy": "sh scripts/deploy.sh",
"postinstall": "sh scripts/install.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/RobotikUTT/eurobot-core"
},
"author": "Axel Mousset Aurélien Labate",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobotikUTT/eurobot-core/issues"
},
"homepage": "https://github.com/RobotikUTT/eurobot-core",
"dependencies": {
"express": "^4.11.2",
"i2c-bus": "^0.11.1",
"native-promisify": "^1.2.0",
"nconf": "^0.7.1",
"node-robot": "^0.2.0",
"node-static": "^0.7.6",
"promise-queue": "^2.1.1",
"socket.io": "^1.3.4",
"tmx-parser": "^1.2.3",
"winston": "^0.9.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-babel": "^4.0.0",
"gulp-nodemon": "^1.0.5",
"gulp-plumber": "^0.6.6",
"gulp-sourcemaps": "^1.3.0",
"gulp-watch": "^4.1.1",
"nodemon": "^1.3.7"
},
"jshintConfig": {
"esnext" : true,
"curly" : true,
"eqeqeq" : true,
"futurehostile" : true,
"latedef" : true,
"maxcomplexity" : 15,
"noarg" : true,
"nocomma" : true,
"nonbsp" : true,
"nonew" : true,
"singleGroups" : true,
"strict" : true,
"undef" : true,
"unused" : true,
"varstmt" : true,
"jquery" : true,
"browser" : true,
"node" : true
}
}