-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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": "messenger-micro",
"description": "Run your Facebook Messenger bot on Micro",
"version": "0.1.0",
"homepage": "https://github.com/AndreasPizsa/micro-messenger",
"author": "Andreas Pizsa (https://github.com/AndreasPizsa)",
"repository": "AndreasPizsa/micro-messenger",
"bugs": {
"url": "https://github.com/AndreasPizsa/micro-messenger/issues"
},
"license": "MIT",
"files": [
"index.js",
"LICENSE"
],
"main": "index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint **/*.js",
"test": "npm run lint && nyc ava",
"commit": "git cz",
"commitmsg": "validate-commit-msg",
"precommit": "npm test",
"prepublish": "npm test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"start": "micro",
"dev": "micro-dev"
},
"keywords": [
"messenger",
"micro",
"zeit",
"bot",
"messenger bot",
"bot framework"
],
"devDependencies": {
"@andreaspizsa/eslint-config": "0.0.1",
"ava": "^0.23.0",
"body-parser": "^1.18.2",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.1",
"got": "^7.1.0",
"husky": "^0.14.3",
"micro": "^9.0.0",
"micro-dev": "^1.2.3",
"nyc": "^11.2.1",
"sinon": "^4.0.1",
"test-listen": "^1.0.2",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"messenger-core": "^0.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}