-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 KB
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
{
"name": "wingbot-intercom",
"version": "1.0.3",
"description": "Intercom integration for wingbot.ai",
"main": "src/main.js",
"scripts": {
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:unit": "mocha ./test/**/*.test.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:coverage": "nyc --reporter=html mocha --opts ./test/mocha.opts ./test && nyc report",
"test:coverage:threshold": "nyc check-coverage --lines 60 --functions 60 --branches 38",
"test:lint": "eslint ./src/**/*.js ./bin/**/*.js ./test/**/*.js ",
"doc": "node ./bin/makeApiDoc.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wingbotai/wingbot-intercom.git"
},
"keywords": [
"wingbot",
"intercom",
"chatbot",
"framework"
],
"author": "wingbot.ai",
"license": "MIT",
"engines": {
"node": "^8.0.0"
},
"bugs": {
"url": "https://github.com/wingbotai/wingbot-intercom/issues"
},
"homepage": "https://github.com/wingbotai/wingbot-intercom#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-mocha": "^0.5.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsdoc": "^7.2.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.13.0",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon": "^7.3.2",
"wingbot": "^2.11.0"
},
"peerDependencies": {
"wingbot": "^2.0.0"
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
}
}