node-custom-tlv
Version:
parser for custom tlv structure
55 lines (54 loc) • 1.2 kB
JSON
{
"name": "node-custom-tlv",
"version": "1.0.0",
"description": "parser for custom tlv structure",
"main": "./lib/Tlv.parser.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "nyc mocha",
"lint": "eslint --fix . --ext .js --fix "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nau077/node-custom-tlv.git"
},
"keywords": [
"tlv",
"parser",
"Roman",
"Tolokontsev",
"node.js"
],
"author": "Roman Tolokontsev",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nau077/node-custom-tlv/issues"
},
"homepage": "https://github.com/Nau077/node-custom-tlv#readme",
"devDependencies": {
"nyc": "^15.1.0",
"chai": "^4.3.4",
"mocha": "^9.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./lib/**/*.{js,jsx}": [
"eslint --fix . --ext .js --fix ",
"git add"
]
}
}