-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "aria-label-prop-type",
"version": "1.1.2",
"description": "A prop type for aria-label and accessibilityLabel that accepts either a string, or a string child somewhere in children",
"main": "index.js",
"scripts": {
"check": "es-check es5 index.js aria-label-prop-type.*.js",
"format": "prettier --write *.js",
"test": "jest",
"prepare": "npm run check && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ariabuckles/aria-label-prop-type.git"
},
"keywords": [
"react",
"accessibility",
"aria",
"label",
"proptypes"
],
"author": "Aria Buckles (https://github.com/ariabuckles)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ariabuckles/aria-label-prop-type/issues"
},
"homepage": "https://github.com/ariabuckles/aria-label-prop-type#readme",
"files": [
"index.js",
"aria-label-prop-type.*.js",
"README.md",
"LICENSE"
],
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"es-check": "^5.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^16.14.0"
}
}