UNPKG

nodebots-interchange

Version:

Tool to build custom backpack firmwares to make devices I2C compliant

79 lines (78 loc) 1.9 kB
{ "name": "nodebots-interchange", "version": "2.1.3", "description": "Tool to build custom backpack firmwares to make devices I2C compliant", "directories": { "doc": "docs", "test": "tests" }, "jest": { "testEnvironment": "node", "testMatch": [ "**/?(*.)(spec|test).js?(x)" ], "collectCoverageFrom": [ "**/*.js" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/bin/", "/coverage/" ] }, "scripts": { "test": "TEST=true ./node_modules/.bin/jest", "lint": "./node_modules/.bin/eslint .", "coverage": "TEST=true ./node_modules/.bin/jest --collectCoverage=true", "release": "standard-version" }, "husky": { "hooks": { "pre-commit": "npm test", "pre-push": "npm test" } }, "repository": { "type": "git", "url": "git+https://github.com/ajfisher/nodebots-interchange.git" }, "keywords": [ "nodebots", "johnny-five", "I2C", "firmware" ], "author": "Andrew Fisher <ajfisher.td@gmail.com> (http://github.com/ajfisher)", "contributors": [ "Suz Hinton (http://github.com/noopkat)", "Derek Wheelden (http://github.com/frxnz)" ], "license": "MIT", "bugs": { "url": "https://github.com/ajfisher/nodebots-interchange/issues" }, "homepage": "https://github.com/ajfisher/nodebots-interchange#readme", "bin": { "interchange": "bin/cli.js" }, "dependencies": { "async": "^3.1.0", "avrgirl-arduino": "^5.0.0", "axios": "^0.21.0", "colors": "^1.4.0", "commander": "^7.0.0", "download": "^8.0.0", "fs-extra": "^9.0.0", "inquirer": "^8.0.0", "lodash": "^4.17.15", "serialport": "^9.0.0", "tmp": "^0.2.1" }, "devDependencies": { "@serialport/parser-readline": "^9.0.1", "eslint": "^7.12.0", "husky": "^6.0.0", "jest": "^26.6.3", "standard-version": "^9.0.0" } }