forked from Intellicode/eslint-plugin-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "eslint-plugin-geekie-react-native",
"version": "3.11.0",
"author": "Tom Hastjarjanto <[email protected]>",
"description": "React Native specific linting rules for ESLint",
"main": "index.js",
"scripts": {
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./lib && eslint ./tests",
"test": "npm run lint && npm run unit-test",
"unit-test": "nyc --silent --reporter=text mocha tests/**/*.js"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/intellicode/eslint-plugin-react-native"
},
"homepage": "https://github.com/intellicode/eslint-plugin-react-native",
"bugs": "https://github.com/intellicode/eslint-plugin-react-native/issues",
"devDependencies": {
"@typescript-eslint/parser": "^2.0.0",
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.7",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"typescript": "^3.6.4"
},
"peerDependencies": {
"eslint": "^3.17.0 || ^4 || ^5 || ^6 || ^7"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"react",
"react-native",
"react native"
],
"license": "MIT",
"dependencies": {
"@babel/traverse": "^7.7.4",
"eslint-plugin-react-native-globals": "^0.1.1"
}
}