forked from crisboarna/fb-messenger-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "fb-messenger-bot-api",
"version": "0.0.0-development",
"description": "NodeJS Facebook Messenger API for bots to send messages and setup events to Facebook.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"test": "jest --coverage --runInBand",
"test:watch": "jest --coverage --watchAll",
"prebuild": "rimraf ./dist",
"build": "tsc",
"build:watch": "tsc -w",
"precommit": "npm t && npm run tslint && npm run build && git add .",
"commit": "git-cz",
"tslint": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json --fix",
"generate-docs": "./node_modules/.bin/typedoc --out ./docs --module es2020 --hideGenerator --tsconfig tsconfig.json",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"crypto": "1.0.1",
"request": "2.88.2"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/request": "2.48.4",
"codecov": "3.6.5",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"greenkeeper-lockfile": "1.15.1",
"husky": "4.2.5",
"jest": "^23.6.0",
"rimraf": "3.0.2",
"semantic-release": "17.0.7",
"travis-deploy-once": "5.0.11",
"ts-jest": "25.5.1",
"tslint": "^5.10.0",
"tslint-config-airbnb": "5.11.2",
"typedoc": "0.17.6",
"typescript": "3.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/crisboarna/fb-messenger-bot-api.git"
},
"author": "Cristian Boarna <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/crisboarna/fb-messenger-bot-api/issues"
},
"homepage": "https://github.com/crisboarna/fb-messenger-bot-api#readme",
"files": [
"dist",
"README.md"
],
"keywords": [
"Facebook",
"Messenger",
"API",
"fb",
"bot",
"client"
],
"jest": {
"roots": [
"<rootDir>/tests"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"coverageReporters": [
"text",
"html",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"src/classes/",
"src/builders"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"globals": {
"ts-jest": {
"skipBabel": true
}
}
}
}