-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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": "express-messenger",
"description": "Solid, extensible middleware for Facebook Messenger bots running on Express",
"version": "0.0.3",
"homepage": "https://github.com/AndreasPizsa/express-messenger",
"author": "Andreas Pizsa (https://github.com/AndreasPizsa)",
"repository": "AndreasPizsa/express-messenger",
"bugs": {
"url": "https://github.com/AndreasPizsa/express-messenger/issues"
},
"license": "MIT",
"files": [
"src",
"LICENSE"
],
"main": "src/express-messenger.js",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint **/*.js",
"test": "npm run lint && nyc mocha",
"commit": "git cz",
"commitmsg": "validate-commit-msg",
"precommit": "npm test",
"prepublishOnly": "npm test",
"preversion": "npm test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"keywords": [
"express",
"facebook",
"messenger",
"bot",
"middleware",
"express-middleware",
"messenger-core"
],
"devDependencies": {
"@andreaspizsa/eslint-config": "0.0.1",
"body-parser": "^1.18.2",
"chai": "^4.1.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",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"sinon": "^4.0.1",
"supertest": "^3.0.0",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"messenger-core": "latest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}