-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 2.97 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
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
{
"name": "@mideind/embla-core",
"version": "0.4.0",
"description": "Core Embla functionality ported to TypeScript/JavaScript.",
"main": "lib/react-native/embla-core.min.js",
"react-native": "lib/react-native/embla-core.min.js",
"module": "lib/web/embla-core.min.js",
"browser": "lib/web/embla-core.min.js",
"types": "lib/types/embla-core.d.ts",
"files": [
"src",
"lib",
"assets",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!**/.*"
],
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"docs": "typedoc src/index.web.ts --tsconfig tsconfig.web.json",
"prepack": "rollup -c"
},
"keywords": [
"react-native",
"ios",
"android",
"web"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mideind/EmblaCoreJS.git"
},
"author": "Miðeind ehf. <mideind@mideind.is> (https://github.com/mideind)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mideind/EmblaCoreJS/issues"
},
"homepage": "https://github.com/mideind/EmblaCoreJS#readme",
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.2",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^28.1.2",
"@types/react": "~17.0.21",
"@types/react-native": "0.70.0",
"del-cli": "^5.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.72.3",
"rollup": "^3.28.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-typescript2": "^0.35.0",
"typedoc": "^0.24.8",
"typescript": "^5.0.2"
},
"resolutions": {
"@types/react": "17.0.21"
},
"peerDependencies": {
"@dr.pogodin/react-native-audio": "^1.5.0",
"react": "*",
"react-native": "*",
"react-native-sound-player": "^0.13.2",
"recordrtc": "^5.6.2"
},
"engines": {
"node": ">= 16.0.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": false
},
"directories": {
"example": "example",
"lib": "lib"
}
}