This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
executable file
·74 lines (74 loc) · 1.91 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
{
"name": "react-native-chatbot",
"version": "0.0.1-alpha.12",
"description": "React Native Chatbot",
"main": "lib/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint lib/*.jsx",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "./node_modules/.bin/mocha --require react-native-mock/mock.js --compilers js:babel-core/register --recursive tests/**/*.spec.js",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc npm test"
},
"files": [
"lib"
],
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
],
"extension": [
".jsx"
]
},
"repository": {
"type": "git",
"url": "https://github.com/LucasBassetti/react-native-chatbot"
},
"keywords": [
"react",
"chat",
"chatbot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasBassetti/react-native-chatbot/issues"
},
"homepage": "https://github.com/LucasBassetti/react-native-chatbot#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^10.0.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^4.0.1",
"chai": "^4.1.1",
"enzyme": "^3.8.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"react-addons-test-utils": "^15.5.0",
"react-native-mock": "^0.3.1",
"sinon": "^7.2.3"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"random-id": "1.0.3",
"react-native-loader": "^1.1.0"
},
"peerDependencies": {
"react": ">= 0.14.0 < 17.0.0-0",
"react-native": ">= 0.45.0",
"styled-components": ">= 2.0.0 < 4"
}
}