-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"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"
}
}
}