forked from LeadingLight/eslint-import-resolver-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 978 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 978 Bytes
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
{
"name": "eslint-import-resolver-react-native",
"version": "0.1.0",
"description": "eslint-plugin-import resolver for react-native that tries to resolve .ios.js and .android.js imports",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeadingLight/eslint-import-resolver-react-native.git"
},
"keywords": [
"eslint",
"eslint-import-resolver"
],
"author": "Pontus Rulander <pontus@iruhl.org> (https://github.com/LeadingLight)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeadingLight/eslint-import-resolver-react-native/issues"
},
"homepage": "https://github.com/LeadingLight/eslint-import-resolver-react-native#readme",
"dependencies": {
"eslint-import-resolver-node": "^0.2.3"
},
"devDependencies": {
"babel-preset-react-native": "^2.1.0",
"babel-register": "^6.24.1",
"mocha": "^3.4.2"
}
}