arduino-node
Version:
A wrapper of the Arduino IDE binary written in nodeJS
65 lines (64 loc) • 1.46 kB
JSON
{
"name": "arduino-node",
"version": "0.5.2",
"description": "A wrapper of the Arduino IDE binary written in nodeJS",
"main": "index.js",
"scripts": {
"test": "xo && ava test/basics.js && ava test/versions-1.8.x.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arduino-cli/arduino-node.git"
},
"keywords": [
"arduino-node",
"arduino-binary",
"arduino-wrapper",
"arduino-cli"
],
"author": {
"name": "Simone Primarosa",
"url": "https://github.com/simonepri"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/arduino-cli/arduino-node/issues"
},
"homepage": "https://github.com/arduino-cli/arduino-node#readme",
"dependencies": {
"bin-manager": "^1.3.1",
"del": "^3.0.0",
"lazy-req": "^2.0.0",
"os-filter-obj": "^1.0.3",
"request": "^2.81.0",
"semver": "^5.3.0"
},
"devDependencies": {
"ava": "*",
"codecov": "^2.2.0",
"executable": "^4.1.0",
"exists-file": "^3.0.1",
"nock": "^9.0.13",
"nyc": "^11.0.3",
"path-exists": "^3.0.0",
"pify": "^3.0.0",
"rimraf": "^2.2.8",
"tempfile": "^2.0.0",
"xo": "^0.18.2"
},
"xo": {
"space": true,
"ignores": [
"bin/**",
"tmp/**"
]
},
"ava": {
"verbose": true,
"match": [
"!bin/**",
"!tmp/**"
]
}
}