-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.04 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
{
"name": "react-messenger-send-to-messenger",
"version": "0.2.0",
"description": "React component for messenger send to messenger plugin",
"license": "MIT",
"homepage": "https://github.com/Yoctol/react-messenger-send-to-messenger",
"repository": {
"type": "git",
"url": "https://github.com/Yoctol/react-messenger-send-to-messenger.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && babel src -d lib --ignore __tests__",
"clean": "rimraf lib",
"precommit": "lint-staged",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"prepare": "husky install",
"prepublish": "npm run build",
"test": "npm run lint:fix && npm run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit",
"testonly:watch": "jest --watch",
"preversion": "npm test"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-yoctol": "^0.26.2",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"prettier-package-json": "^2.6.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^3.0.2"
},
"keywords": [
"bot",
"chat",
"component",
"customer",
"facebook",
"messenger",
"react"
]
}