forked from noopkat/avrgirl-arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@sienci/avrgirl-arduino",
"version": "5.0.3",
"description": "A NodeJS library for flashing compiled sketch files to Arduino microcontroller boards.",
"bin": {
"avrgirl-arduino": "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",
"demo": "sh -c 'node tests/demos/$1' --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sienci-Labs/avrgirl-arduino"
},
"keywords": [
"arduino",
"avr",
"avr109",
"stk500",
"avrdude",
"avrgirl",
"avrg"
],
"author": "Kevin Glover",
"license": "MIT",
"bugs": {
"url": "hhttps://github.com/Sienci-Labs/avrgirl-arduino/issues"
},
"homepage": "https://github.com/Sienci-Labs/avrgirl-arduino",
"dependencies": {
"async": "^2.6.3",
"awty": "^0.1.0",
"browser-serialport": "git+https://github.com/noopkat/browser-serialport.git#c8628c41c11890d3058875994c15f83f2df8185b",
"chip.avr.avr109": "^1.1.1",
"colors": "^1.4.0",
"graceful-fs": "^4.2.4",
"intel-hex": "^0.1.2",
"minimist": "^1.2.5",
"process": "^0.11.10",
"serialport": "^10.5.0",
"stk500": "^2.0.3",
"stk500-v2": "^1.0.4"
},
"devDependencies": {
"buffer": "^6.0.3",
"eslint": "^6.5.0",
"istanbul": "^0.4.0",
"istanbul-coveralls": "^1.0.3",
"jscs-loader": "^0.3.0",
"os-browserify": "^0.3.0",
"proxyquire": "^1.7.3",
"sinon": "^9.2.3",
"stream-browserify": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.1.1",
"terser-webpack-plugin": "^5.1.1",
"util": "^0.12.3",
"virtual-serialport": "^0.3.1",
"webpack": "^5.15.0",
"webpack-cli": "^3.3.12"
},
"browser": {
"graceful-fs": false,
"serialport": false
},
"directories": {
"lib": "lib",
"test": "tests"
}
}