-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 806 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 806 Bytes
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
{
"name": "stk500",
"version": "2.0.3",
"description": "Fully javascript stk500v1 programmer. Allows you to program Arduinos straight from node (or browser for that matter). No more avrdude system calls or using the arduino IDE.",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "mocha --include test/*.js test/*.js --reporter spec"
},
"repository": "https://github.com/jacobrosenthal/js-stk500v1",
"keywords": [
"arduino",
"stk500",
"avrdude"
],
"author": "Jacob Rosenthal",
"license": "MIT",
"dependencies": {
"async": "^0.9.0"
},
"devDependencies": {
"event-stream": "^3.1.7",
"mocha": "^2.0.1",
"should": "^4.4.1",
"intel-hex": "^0.1.1",
"serialport": "^1.4.0",
"sinon": "^1.12.2"
}
}