-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 941 Bytes
/
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
{
"name": "diff-steer",
"version": "0.0.2",
"description": "Differential steering algorithim for driving a two-motor bot with a two-axis joystick",
"main": "index.js",
"scripts": {
"test:lint": "eslint *.js lib/**/*.js test/**/*.js",
"test:unit": "ava test/*_test.js",
"test": "npm run test:lint && npm run test:unit"
},
"engines": {
"node": ">=4.4.7"
},
"bugs": {
"url": "https://github.com/dlindahl/diff-steer/issues"
},
"homepage": "https://github.com/dlindahl/diff-steer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dlindahl/diff-steer.git"
},
"author": "Derek Lindahl",
"license": "MIT",
"contributors": [],
"keywords": [
"steering",
"nodebots",
"sumobots",
"sumobot",
"joystick",
"gamepad"
],
"dependencies": {
"lodash.clamp": "^4.0.2"
},
"devDependencies": {
"ava": "^0.15.2",
"sinon": "^1.17.4"
}
}