-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.46 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
{
"name": "bottender-connector-simple-messenger",
"description": "bottender connector for messenger, simple",
"license": "MIT",
"author": "tw0517tw",
"version": "0.1.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && babel src -d lib --ignore **/__tests__ --copy-files",
"clean": "rimraf lib",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"test": "echo ok"
},
"peerDependencies": {
"bottender": "^0.15.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"bottender": "^0.15.7",
"eslint": "^5.7.0",
"eslint-config-yoctol-base": "^0.17.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.3.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"prettier-package-json": "^2.0.1",
"rimraf": "^2.6.2"
},
"keywords": [
"bottender",
"messenger"
],
"engines": {
"node": ">=8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"*package.json": [
"prettier-package-json --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
}
}