-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "a11y-react-emoji",
"version": "1.2.0",
"description": "An accessible Emoji component for React applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/seanmcp/a11y-react-emoji",
"homepage": "https://github.com/seanmcp/a11y-react-emoji#readme",
"bugs": "https://github.com/seanmcp/a11y-react-emoji/issues",
"author": "Sean McPherson <[email protected]> (https://github.com/seanmcp)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.11",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"jest": "^26.6.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"ts-jest": "^26.5.3",
"typescript": "^3.2.2"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"preversion": "npm run test",
"postpublish": "git push --tags",
"test": "jest"
},
"files": [
"lib"
],
"keywords": [
"react",
"emoji",
"a11y",
"accessibility",
"accessible"
]
}