forked from LucasBassetti/react-simple-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.37 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
{
"name": "react-simple-chatbot",
"version": "0.2.9",
"description": "React Simple Chatbot",
"main": "dist/react-simple-chatbot.js",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/*.jsx",
"prepublish": "npm run build",
"prepush": "npm run lint && npm run test:coverage",
"start": "./node_modules/.bin/webpack-dev-server --inline --content-base build/",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "./node_modules/.bin/mocha tests/helpers/setup.js tests/**/*.spec.js --require babel-register",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc npm test",
"build": "./node_modules/.bin/webpack --config webpack.config.prod.js -p"
},
"files": [
"dist"
],
"nyc": {
"function": 80,
"lines": 80,
"check-coverage": true,
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
],
"extension": [
".jsx"
]
},
"repository": {
"type": "git",
"url": "https://github.com/LucasBassetti/react-simple-chatbot"
},
"keywords": [
"react",
"chat",
"chatbot",
"conversational-ui"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasBassetti/react-simple-chatbot/issues"
},
"homepage": "https://github.com/LucasBassetti/react-simple-chatbot#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.0.2",
"clean-webpack-plugin": "^0.1.16",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.3",
"jsdom": "^9.12.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.0.0",
"sinon": "^2.3.5",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"circular-json": "^0.3.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"random-id": "0.0.2"
},
"peerDependencies": {
"styled-components": "^2.x",
"react": "^16.x",
"react-dom": "^16.x"
}
}