UNPKG

line-bot-server

Version:
97 lines (96 loc) 2.7 kB
{ "name": "line-bot-server", "version": "0.2.1", "description": "LINE Bot Server for Node.js", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "clean": "del-cli dist", "codecov": "codecov -t 4a63f508-52ac-4484-8246-d0973f65dcdf", "coverage": "nyc --reporter=html --reporter=text-summary mocha --exit", "gen-default-ssl": "ts-node scripts/gen-default-ssl.ts", "gen-empty-env": "ts-node scripts/gen-empty-env.ts", "lint": "tslint -p . -p scripts -p test", "lint:fix": "tslint -p . -p scripts -p test --fix", "prebuild": "npm run clean && npm run lint", "precommit": "npm run lint", "prepush": "npm run build && npm run coverage", "pretest": "npm run build && npm run gen-default-ssl && npm run gen-empty-env", "release": "npm run build && npm publish --access public", "test": "nyc --reporter=lcov --reporter=text-summary mocha --exit", "test:watch": "mocha --watch-extensions ts --watch" }, "nyc": { "per-file": true, "extension": [ ".ts", ".tsx" ], "include": [ "lib/**/*.ts" ], "exclude": [ "**/*.d.ts", "lib/bot-server-options.ts" ], "require": [ "ts-node/register", "source-map-support/register" ], "cache": true, "all": true }, "repository": { "type": "git", "url": "git+https://github.com/intocode-io/line-bot-server-nodejs.git" }, "keywords": [ "LINE", "Bot", "Server", "Express" ], "author": "Satana Charuwichitratana", "license": "MIT", "bugs": { "url": "https://github.com/intocode-io/line-bot-server-nodejs/issues" }, "homepage": "https://github.com/intocode-io/line-bot-server-nodejs#readme", "dependencies": { "@line/bot-sdk": "^6.0.1", "@types/dotenv": "^4.0.3", "@types/express": "^4.11.1", "@types/fs-extra": "^5.0.2", "@types/lodash": "^4.14.108", "@types/node": "^10.0.6", "@types/pem": "^1.9.3", "dotenv": "^5.0.1", "express": "^4.16.3", "fs-extra": "^6.0.1", "lodash": "^4.17.10", "pem": "^1.12.5" }, "devDependencies": { "@types/chai": "^4.1.3", "@types/chai-as-promised": "^7.1.0", "@types/chai-http": "^3.0.4", "@types/mocha": "^5.2.0", "@types/sinon": "^4.3.2", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "chai-http": "^4.0.0", "codecov": "^3.0.2", "del-cli": "^1.1.0", "husky": "^0.14.3", "istanbul": "^0.4.5", "mocha": "^5.1.1", "nyc": "^11.7.3", "prettier": "^1.12.1", "sinon": "^5.0.7", "source-map-support": "^0.5.5", "ts-node": "^6.0.3", "tslint": "^5.10.0", "typescript": "^2.8.3" } }