-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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": "react-native-a11y-slider",
"version": "1.3.2",
"description": "An accessible range slider that supports assistive devices like screen readers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgillick/react-native-a11y-slider.git"
},
"keywords": [
"a11y",
"accessibility",
"react-native",
"slider"
],
"author": "Jeremy Gillick",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgillick/react-native-a11y-slider/issues"
},
"homepage": "https://github.com/jgillick/react-native-a11y-slider#readme",
"devDependencies": {
"@react-native-community/eslint-config": "^3.1.0",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-react-native-a11y": "^3.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {}
}