-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.02 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
{
"name": "react-aria-offcanvas",
"version": "1.4.3",
"description": "Accessible Off-Canvas component for React.js",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/__build__",
"publish:gh": "npm run build && npm run deploy",
"transpile": "npx babel src -d dist",
"prepare": "npm run transpile",
"lint": "eslint src tests",
"jest": "npx jest",
"jest:w": "npx jest --watch",
"test": "npm run lint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neosiae/react-aria-offcanvas.git"
},
"keywords": [
"react",
"react-component",
"aria",
"offcanvas",
"accessible"
],
"author": "Denis Kotlica",
"license": "MIT",
"bugs": {
"url": "https://github.com/neosiae/react-aria-offcanvas/issues"
},
"homepage": "https://neosiae.github.io/react-aria-offcanvas",
"dependencies": {
"prop-types": "^15.7.2",
"run-event-handler-once": "^1.0.2"
},
"peerDependencies": {
"react": "^16.4.2 || ^17.0.0",
"react-dom": "^16.4.2 || ^17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.8.3",
"@testing-library/dom": "^5.6.1",
"@testing-library/react": "^8.0.9",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-dom": "^3.5.0",
"prettier": "^1.19.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}