UNPKG

line-api-cli

Version:
81 lines (80 loc) 2.12 kB
{ "name": "line-api-cli", "version": "1.3.8", "description": "LINE API CLIs for Node.js", "main": "lib/index.js", "bin": { "line": "bin/clis/line-cli.js", "linetv": "bin/clis/linetv-cli.js", "richmenu": "bin/clis/richmenu-cli.js", "liff": "bin/clis/liff-cli.js", "things": "bin/clis/things-cli.js" }, "scripts": { "build": "npm run clean && npm run build:babel && npm run chmod:clis", "build:babel": "babel lib --out-dir bin --source-maps --quiet --ignore '**/*.spec.js'", "chmod:clis": "chmod +x bin/clis/*-cli.js", "clean": "rimraf bin", "coverage": "jest --coverage", "lint": "eslint .", "postinstall": "node bin/postinstall.js", "test": "jest", "test:watch": "jest --watch" }, "repository": { "type": "git", "url": "git+https://github.com/micksatana/line-api-cli-nodejs.git" }, "keywords": [ "LINE", "API", "Messaging", "API", "Things", "API", "LINE", "Bot", "Command", "line", "interface" ], "author": "Satana Charuwichitratana", "license": "MIT", "bugs": { "url": "https://github.com/micksatana/line-api-cli-nodejs/issues" }, "homepage": "https://github.com/micksatana/line-api-cli-nodejs#readme", "dependencies": { "axios": "^0.21.1", "colors": "^1.4.0", "command-line-args": "^5.1.1", "command-line-usage": "^6.1.1", "console-table": "^0.1.2", "console.table": "^0.10.0", "js-yaml": "^4.0.0", "prompts": "^2.4.0", "qs": "^6.10.1", "terminal-kit": "^2.0.7" }, "devDependencies": { "@babel/cli": "^7.13.10", "@babel/core": "^7.13.10", "@babel/plugin-proposal-class-properties": "^7.13.0", "@babel/preset-env": "^7.13.12", "@types/jest": "^26.0.21", "babel-eslint": "^10.0.3", "eslint": "^7.22.0", "eslint-plugin-jest": "^24.3.2", "husky": "^5.2.0", "jest": "^26.6.3", "jest-date-mock": "^1.0.8", "jest-extended": "^0.11.5", "rimraf": "^3.0.2" }, "husky": { "hooks": { "pre-push": "npm run lint && npm test", "pre-commit": "npm run build" } } }