-
Notifications
You must be signed in to change notification settings - Fork 574
/
package.json
98 lines (98 loc) · 2.94 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
89
90
91
92
93
94
95
96
97
98
{
"name": "react-mentions",
"version": "4.5.0",
"description": "React mentions input",
"main": "dist/react-mentions.cjs.js",
"module": "dist/react-mentions.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "preconstruct build",
"format": "prettier --write --no-semi --single-quote --trailing-comma es5 \"{src,test,demo/src}/**/*.js\"",
"lint": "eslint --max-warnings=0 --ext .js src test demo",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development webpack-dev-server --config demo/webpack.config.js",
"test": "jest",
"now-build": "webpack --config demo/webpack.config.js",
"prerelease": "yarn build",
"release": "changeset publish",
"change": "changeset"
},
"repository": {
"type": "git",
"url": "https://github.com/signavio/react-mentions.git"
},
"keywords": [
"react",
"mentions",
"react-component"
],
"browserslist": [
"chrome >= 50",
"firefox >= 52",
"safari >= 10",
"ie >= 11"
],
"author": "SAP-Signavio",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/signavio/react-mentions/issues"
},
"homepage": "https://github.com/signavio/react-mentions",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@changesets/cli": "^2.23.0",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.6",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"core-js": "^3.1.4",
"cross-env": "^5.2.1",
"css-loader": "^3.0.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"html-webpack-harddisk-plugin": "1.0.1",
"html-webpack-plugin": "4.0.0-beta.5",
"jasmine-reporters": "^2.3.2",
"jest": "^24.8.0",
"jest-enzyme": "^7.0.2",
"jest-watch-typeahead": "^0.3.1",
"preconstruct": "^0.0.82",
"prettier": "^1.10.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"recompose": "^0.30.0",
"regenerator-runtime": "^0.13.2",
"style-loader": "^0.23.1",
"substyle-jss": "^4.0.1",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@babel/runtime": "7.4.5",
"invariant": "^2.2.4",
"prop-types": "^15.5.8",
"substyle": "^9.1.0"
},
"peerDependencies": {
"react": ">=16.8.3",
"react-dom": ">=16.8.3"
}
}