UNPKG

canopen

Version:

CANopen implementation for Javascript

49 lines (48 loc) 1.27 kB
{ "name": "canopen", "version": "6.2.1", "description": "CANopen implementation for Javascript", "main": "index.js", "scripts": { "test": "mocha ./test/test*.js ./test/protocol/test*.js", "test:examples": "mocha ./test/examples/test*.js", "jsdoc": "jsdoc -c .jsdoc.json -R README.md source", "lint": "eslint index.js examples source test", "lint:fix": "npm run lint -- --fix" }, "author": "Wilkins White <ww@novadynamics.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/DaxBot/node-canopen.git" }, "bugs": { "url": "https://github.com/DaxBot/node-canopen/issues" }, "homepage": "https://daxbot.com/open-source", "keywords": [ "canopen", "can-bus" ], "dependencies": { "ini": "^3.0.1", "node-crc": "^1.3.2" }, "devDependencies": { "chai": "^4.3.10", "chai-as-promised": "^7.1.1", "docdash": "^2.0.2", "eslint": "^8.55.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jsdoc": "^38.1.6", "eslint-plugin-mocha": "^9.0.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.1.1", "jsdoc": "^4.0.2", "mocha": "^9.2.2", "socketcan": "^3.0.0" }, "engines": { "node": ">=12" } }