UNPKG

modemjs

Version:

NPM package to simplify sending and receiving SMS with a GSM Modem on Node.js

53 lines (52 loc) 1.41 kB
{ "name": "modemjs", "version": "1.2.4", "description": "NPM package to simplify sending and receiving SMS with a GSM Modem on Node.js", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "tsc", "format": "npx prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/jruipinto/modemjs.git" }, "keywords": [ "modem", "gsm", "SMS", "AT", "AT commands" ], "author": "J Rui Pinto", "license": "Apache-2.0", "bugs": { "url": "https://github.com/jruipinto/modemjs/issues" }, "homepage": "https://jruipinto.github.io/modemjs/", "dependencies": { "ramda": "^0.26.1", "rxjs": "^6.5.3", "serialport": "^8.0.5" }, "devDependencies": { "@types/node": "^13.1.0", "@types/ramda": "^0.26.38", "@types/serialport": "^7.0.4", "prettier": "^1.19.1", "tslint": "^5.20.1", "tslint-config-prettier": "^1.18.0", "typescript": "^3.7.4" }, "files": [ "lib/**/*" ] }