spos
Version:
SPOS stands for Small Payload Object Serializer
51 lines (50 loc) • 1.17 kB
JSON
{
"name": "spos",
"version": "1.4.0-beta",
"description": "SPOS stands for Small Payload Object Serializer",
"main": "spos/index.js",
"scripts": {
"dev": "npm install && npm link . && npm link spos",
"test": "jest --coverage",
"random": "mocha test/test_random.js",
"pretty": "prettier --write \"README.md\" \"spos/**/*.js\" \"test/**/*.js\"",
"prepare": "npx husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luxedo/node-SPOS.git"
},
"keywords": [
"serializer",
"LoRa",
"Globalstar",
"low-bandwidth"
],
"author": "Luiz Eduardo Amaral",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/luxedo/node-SPOS/issues"
},
"homepage": "https://github.com/luxedo/node-SPOS#readme",
"dependencies": {
"crc": "^3.8.0"
},
"devDependencies": {
"chai": "^4.3.4",
"husky": "^4.3.8",
"jest": "^28.1.3",
"mocha": "^7.2.0",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.js": [
"npm run pretty",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty && npm test && npm run random"
}
}
}