forked from KittyGiraudel/react-a11y-dialog
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "@allejo/react-a11y-dialog",
"version": "1.0.0",
"description": "A React component wrapper around a11y-dialog.",
"homepage": "https://github.com/allejo/react-a11y-dialog",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"modal",
"dialog",
"accessibility",
"a11y",
"focus",
"react",
"component"
],
"author": "Hugo Giraudel (http://hugogiraudel.com)",
"scripts": {
"compile:ts": "tsc",
"compile:babel": "babel build/index.jsx -o dist/index.js",
"prettify": "prettier --write *.{json,ts,tsx}",
"prepare": "npm run build",
"start": "babel build/index.js -o dist/index.js -w",
"build": "npm run compile:ts && npm run compile:babel"
},
"dependencies": {
"@types/a11y-dialog": "^5.2.0",
"a11y-dialog": "^5.2.0"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"prettier": "^1.17.1",
"typescript": "^3.4.5"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/allejo/react-a11y-dialog"
}
}