forked from joshswan/react-native-autolink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
55
56
{
"name": "react-native-autolink",
"version": "1.8.1",
"description": "Autolinking component for React Native",
"author": "Josh Swan <josh@disruptivelabs.io>",
"main": "src/index.tsx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshswan/react-native-autolink"
},
"bugs": {
"url": "https://github.com/joshswan/react-native-autolink/issues"
},
"keywords": [
"react native",
"autolinking",
"autolink",
"linking"
],
"files": [
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint src/**/*.js test/**/*.js",
"test": "mocha --require @babel/register --require test/setup.js --recursive test/*.test.js"
},
"dependencies": {
"autolinker": "^3.11.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"mocha": "^6.0.1",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-native": "^0.58.5",
"react-native-mock-render": "^0.1.2",
"sinon": "^7.2.4"
},
"peerDependencies": {
"react-native": ">=0.25.0"
}
}