forked from davidtheclark/react-aria-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "react-aria-modal",
"version": "5.0.0",
"description": "A fully accessible and flexible React modal built according WAI-ARIA Authoring Practices",
"main": "dist/react-aria-modal.js",
"scripts": {
"lint": "eslint .",
"format": "prettier --write '*/**.js'",
"demo-bundle": "browserify demo/js -t babelify -o demo/demo-bundle.js",
"start": "budo demo/js/index.js:demo-bundle.js --live --dir demo -- -t babelify -o demo/demo-bundle.js",
"build": "babel src -d dist",
"prepublish": "npm run build",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtheclark/react-aria-modal.git"
},
"keywords": [
"react",
"react-component",
"modal",
"accessibility",
"accessible",
"dialog"
],
"author": "David Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/react-aria-modal/issues"
},
"homepage": "https://github.com/davidtheclark/react-aria-modal#readme",
"dependencies": {
"focus-trap-react": "^10.1.4",
"no-scroll": "^2.1.1"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"budo": "^11.8.4",
"eslint": "^5.14.0",
"prettier": "1.16.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}