-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.14 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.14 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@textile/react-native-sdk",
"version": "3.1.4",
"description": "## Getting started",
"nativePackage": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"ios/*",
"android/*",
"textile-react-native-sdk.podspec"
],
"scripts": {
"build": "rm -rf dist/ && tsc",
"lint": "eslint --fix --ext .mjs,.js,.jsx,.ts,.tsx .",
"test": "jest --no-watchman",
"docs": "node ./scripts/contributors.js; npx typedoc --out ./docs --mode modules ./src"
},
"keywords": [
"react-native"
],
"author": "textile.io",
"license": "MIT",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@textile/tslint-rules": "1.0.3",
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.3",
"@types/react": "^16.4.15",
"@types/react-native": "^0.57.2",
"@types/react-test-renderer": "^16.0.3",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-jest": "23.6.0",
"docdash": "^1.0.3",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^6.0.1",
"eslint-config-bevry": "^1.2.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"jest": "^23.6.0",
"jest-fetch-mock": "^1.6.6",
"markdown-magic": "^0.1.25",
"markdown-magic-github-contributors": "^0.0.3",
"metro-react-native-babel-preset": "0.48.0",
"prettier": "^1.18.2",
"react": "^16.5.0",
"react-dom": "^16.5.2",
"react-native": "^0.57.2",
"react-test-renderer": "16.5.0",
"ts-jest": "^23.10.5",
"typedoc": "^0.15.0",
"typescript": "^3.1.1"
},
"dependencies": {
"@textile/js-types": "0.7.7",
"buffer": "^5.2.1"
},
"directories": {
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textileio/react-native-sdk.git"
},
"bugs": {
"url": "https://github.com/textileio/react-native-sdk/issues"
},
"homepage": "https://github.com/textileio/react-native-sdk#readme",
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>/node_modules"
],
"setupFiles": [],
"transformIgnorePatterns": [
"node_modules/(?!@textile/react-native-protobufs)/"
]
},
"eslintConfig": {
"extends": [
"bevry"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-undefined": 0,
"default-case": 0
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}