-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.83 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
{
"name": "@intocode-io/fireliff-cli",
"version": "1.5.4",
"description": "Command line interface for building LIFF app on Firebase",
"main": "lib/index.js",
"bin": {
"fliff": "bin/fliff-cli.js",
"richmenu": "bin/richmenu-cli.js",
"things": "bin/things-cli.js"
},
"scripts": {
"clean": "rimraf bin",
"coverage": "jest --coverage",
"build": "npm run clean && babel lib --out-dir bin --source-maps --quiet && chmod +x bin/*-cli.js",
"lint": "eslint .",
"pretty": "prettier --write \"./{lib,test}/**/*.{js,yml,json}\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micksatana/fireliff-cli.git"
},
"keywords": [
"LIFF",
"Firebase",
"Command",
"Line",
"Interface",
"CLI"
],
"author": "Satana Charuwichitratana",
"license": "MIT",
"bugs": {
"url": "https://github.com/micksatana/fireliff-cli/issues"
},
"homepage": "https://github.com/micksatana/fireliff-cli#readme",
"dependencies": {
"ajv": "^7.0.4",
"axios": "^0.21.1",
"colors": "^1.4.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.1",
"console.table": "^0.10.0",
"prompt": "^1.1.0",
"qs": "^6.9.6",
"recursive-copy": "^2.0.11"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"mkdirp": "^1.0.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
}
}