-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.92 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
62
63
64
{
"name": "wingbot-browser-lib",
"version": "1.0.0",
"description": "Wingbot tools for the browser",
"main": "src/main.js",
"scripts": {
"start": "node ./bin/testServer",
"test:all": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test": "npm run test:lint",
"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 80 --functions 80 --branches 75",
"test:lint": "eslint ./src/**/*.js",
"doc": "node ./bin/makeApiDoc.js",
"build": "node ./bin/build.js -s production"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wingbotai/wingbot-browser-lib.git"
},
"keywords": [
"wingbot",
"browser",
"chatbot",
"framework",
"botservice"
],
"author": "wingbot.ai",
"license": "MIT",
"engines": {
"node": "^8.0.0"
},
"bugs": {
"url": "https://github.com/wingbotai/wingbot-browser-lib/issues"
},
"homepage": "https://github.com/wingbotai/wingbot-browser-lib#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-mocha": "^0.5.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsdoc": "^4.1.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-mocha": "^5.2.1",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"webpack": "^4.29.0",
"webpack-dev-middleware": "^3.5.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"botframework-webchat": "^4.2.0"
}
}