UNPKG

1.49 kBJSONView Raw
1{
2 "name": "eslint-plugin-react-native",
3 "version": "4.1.0",
4 "author": "Tom Hastjarjanto <tom@intellicode.nl>",
5 "description": "React Native specific linting rules for ESLint",
6 "main": "index.js",
7 "scripts": {
8 "coveralls": "nyc report --reporter=text-lcov | coveralls",
9 "lint": "eslint ./lib && eslint ./tests",
10 "test": "npm run lint && npm run unit-test",
11 "unit-test": "nyc --silent --reporter=text mocha tests/**/*.js"
12 },
13 "files": [
14 "LICENSE",
15 "README.md",
16 "index.js",
17 "lib"
18 ],
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/intellicode/eslint-plugin-react-native"
22 },
23 "homepage": "https://github.com/intellicode/eslint-plugin-react-native",
24 "bugs": "https://github.com/intellicode/eslint-plugin-react-native/issues",
25 "devDependencies": {
26 "@babel/eslint-parser": "^7.16.3",
27 "@typescript-eslint/parser": "^6.6.0",
28 "coveralls": "^3.1.1",
29 "eslint": "^8.4.0",
30 "eslint-config-airbnb": "^19.0.2",
31 "eslint-plugin-import": "^2.25.2",
32 "eslint-plugin-jsx-a11y": "^6.4.1",
33 "eslint-plugin-react": "^7.26.1",
34 "mocha": "^10.2.0",
35 "nyc": "^15.1.0",
36 "typescript": "^5.2.2"
37 },
38 "peerDependencies": {
39 "eslint": "^3.17.0 || ^4 || ^5 || ^6 || ^7 || ^8"
40 },
41 "keywords": [
42 "eslint",
43 "eslint-plugin",
44 "eslintplugin",
45 "react",
46 "react-native",
47 "react native"
48 ],
49 "license": "MIT",
50 "dependencies": {
51 "eslint-plugin-react-native-globals": "^0.1.1"
52 }
53}