forked from wingbotai/wingbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.78 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
58
59
60
61
{
"name": "wingbot",
"version": "1.5.0",
"description": "Facebook Messenger Chatbot Framework",
"main": "index.js",
"scripts": {
"doc": "node ./bin/makeApiDoc.js && gitbook install ./doc && gitbook build ./doc && rm -rf ./docs && mv ./doc/_book ./docs",
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:coverage": "nyc --reporter=html mocha --opts ./mocha.opts ./test && nyc report",
"test:coverage:threshold": "nyc check-coverage --lines 85 --functions 85 --branches 76",
"test:backend": "mocha --opts ./mocha.opts ./test ./src",
"test:lint": "eslint --ext .js src test *.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wingbotai/wingbot.git"
},
"keywords": [
"Facebook",
"Messenger",
"Chatbot",
"Framework",
"Bot"
],
"engines": {
"node": "^8.0.0"
},
"author": "wingbot.ai",
"license": "MIT",
"bugs": {
"url": "https://github.com/wingbot.ai/wingbot/issues"
},
"homepage": "https://github.com/wingbot.ai/wingbot#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-mocha": "^0.4.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsdoc": "^3.6.3",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.7.0",
"gitbook-cli": "^2.3.2",
"handlebars": "^4.0.11",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"po2json": "^0.4.5",
"sinon": "^6.3.5"
},
"dependencies": {
"path-to-regexp": "^2.2.0",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"tsd-jsdoc": "^2.0.0-beta.5"
},
"optionalDependencies": {
"po2json": "^0.4.5",
"handlebars": "^4.0.11"
}
}