forked from Intellicode/eslint-plugin-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "eslint-plugin-react-native",
"version": "3.0.1",
"author": "Tom Hastjarjanto <[email protected]>",
"description": "React Native specific linting rules for ESLint",
"main": "index.js",
"scripts": {
"coveralls": "cat ./reports/coverage/lcov.info | coveralls",
"lint": "eslint ./lib && eslint ./tests",
"test": "npm run lint && npm run unit-test",
"unit-test": "istanbul cover --dir reports/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --reporter dot"
},
"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": {
"babel-eslint": "7.2.3",
"coveralls": "2.13.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"istanbul": "0.4.5",
"mocha": "3.4.1"
},
"peerDependencies": {
"eslint": "^3.17.0 || ^4.0.0"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"react",
"react-native",
"react native"
],
"license": "MIT"
}