forked from pradel/react-responsive-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 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
65
{
"name": "react-responsive-modal",
"version": "2.0.0",
"description": "A simple responsive react modal",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib && node scripts/generate-css-from-jss.js",
"build:watch": "npm run build -- --watch",
"lint": "eslint src docs/src scripts",
"test": "npm run lint && npm run build && npm run size",
"size": "size-limit",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"src/**/*.js\" \"scripts/**/*.js\" \"docs/src/**/*.{js,css}\" \"README.md\" \".github/*.md\""
},
"keywords": [
"react",
"responsive",
"modal",
"flex"
],
"repository": "git+https://github.com/pradel/react-responsive-modal.git",
"author": "Léo Pradel",
"bugs": {
"url": "https://github.com/pradel/react-responsive-modal/issues"
},
"homepage": "https://github.com/pradel/react-responsive-modal#readme",
"dependencies": {
"classnames": "^2.2.5",
"no-scroll": "^2.1.0",
"prop-types": "^15.6.0",
"react-jss": "^8.1.0",
"react-minimalist-portal": "^2.1.1",
"react-transition-group": "^2.2.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"decamelize": "^1.2.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-jsx-import": "^0.0.1",
"eslint-plugin-react": "^7.5.1",
"prettier": "^1.9.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"size-limit": "^0.13.2"
},
"size-limit": [
{
"path": "lib/modal.js",
"limit": "6 KB"
}
],
"license": "MIT"
}