@yinyinfurong_zmr/dbc-can
Version:
A general purpose CAN (Controller Area Network) toolbox with support for .dbc file parsing, CAN message decoding, and more
74 lines (73 loc) • 2.25 kB
JSON
{
"name": "@yinyinfurong_zmr/dbc-can",
"version": "2.2.2",
"description": "A general purpose CAN (Controller Area Network) toolbox with support for .dbc file parsing, CAN message decoding, and more",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json --collectCoverage=true",
"coverage": "jest --config jestconfig.json --coverage",
"build": "npm run buildparser && tsc && npm run bundle",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"npm": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"go": "npm run buildparser && tsc && node lib/index.js",
"buildparser": "npx tspeg parser_generator/grammar.peg src/parser/parser.ts",
"test:debug": "jest --runInBand",
"bundle": "rollup --config --bundleConfigAsCjs"
},
"files": [
"lib/**/*",
"dist-bundle/**/*",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bit-dream/candied.git"
},
"keywords": [
"dbc",
"can",
"can-dbc",
"dbc-can",
"parser",
"vector",
"controller area network",
"dbc parser",
"vector parser",
"decode",
"can decode",
"can reader"
],
"author": "Derek Black",
"license": "ISC",
"bugs": {
"url": "https://github.com/bit-dream/candied/issues"
},
"homepage": "https://github.com/bit-dream/candied#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rollup": "^3.9.1",
"rollup-plugin-commonjs": "^10.1.0",
"ts-jest": "^28.0.7",
"tslib": "^2.4.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tspeg": "^3.2.1",
"typescript": "^4.7.4"
},
"dependencies": {
"candied": "^2.1.0"
}
}