forked from noopkat/avrgirl-arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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
65
66
{
"name": "avrgirl-arduino",
"version": "4.2.3",
"description": "A NodeJS library for flashing compiled sketch files to Arduino microcontroller boards.",
"bin": "./bin/cli.js",
"main": "avrgirl-arduino-node.js",
"module": "dist/avrgirl-arduino.min.js",
"scripts": {
"dev-browser": "webpack --watch",
"lint": "eslint --fix 'tests/*.spec.js' 'tests/helpers/*.js' 'avrgirl-arduino.js' 'lib/*.js'",
"tape": "tape 'tests/*.spec.js' | tap-spec",
"test": "npm run tape && npm run lint",
"cover": "istanbul cover ./tests/*.spec.js && istanbul-coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/noopkat/avrgirl-arduino.git"
},
"keywords": [
"arduino",
"avr",
"avr109",
"stk500",
"avrdude",
"avrgirl",
"avrg"
],
"author": "Suz Hinton",
"license": "MIT",
"bugs": {
"url": "https://github.com/noopkat/avrgirl-arduino/issues"
},
"homepage": "https://github.com/noopkat/avrgirl-arduino",
"dependencies": {
"async": "^2.1.2",
"awty": "^0.1.0",
"browser-serialport": "https://github.com/noopkat/browser-serialport#c8628c41c11890d3058875994c15f83f2df8185b",
"chip.avr.avr109": "^1.1.0",
"colors": "^1.1.2",
"graceful-fs": "^4.1.2",
"intel-hex": "^0.1.2",
"jscs-loader": "^0.3.0",
"minimist": "^1.2.0",
"serialport": "^8.0.5",
"stk500": "^2.0.2",
"stk500-v2": "^1.0.4"
},
"devDependencies": {
"avrga-tester": "1.x",
"eslint": "^6.5.0",
"istanbul": "^0.4.0",
"istanbul-coveralls": "^1.0.3",
"proxyquire": "^1.7.3",
"sinon": "^4.1.2",
"tap-spec": "^5.0.0",
"tape": "^4.2.1",
"terser-webpack-plugin": "^2.1.0",
"virtual-serialport": "^0.3.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"browser": {
"graceful-fs": false,
"serialport": false
}
}