-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.96 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.96 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
{
"name": "react-native-mparticle",
"description": "React Native module for mParticle",
"homepage": "https://www.mparticle.com",
"license": "Apache-2.0",
"repository": "mParticle/react-native-mparticle",
"version": "2.8.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": "js/index",
"scripts": {
"build": "tsc",
"build:plugin": "tsc --build plugin",
"clean": "rm -rf lib",
"clean:plugin": "rm -rf plugin/build",
"prepare": "yarn clean && yarn build && yarn build:plugin",
"dev:pack": "yarn build && yarn build:plugin && yarn pack --filename react-native-mparticle-latest.tgz",
"dev:link": "./dev-link.sh",
"lint": "eslint '{js,lib}/**/*.{ts,tsx}' --fix",
"format": "prettier --write '{js,lib}/**/*.{ts,tsx}'",
"test": "npm run lint"
},
"files": [
"android",
"ios",
"js",
"lib",
"react-native-mparticle.podspec",
"app.plugin.js",
"plugin"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"dependencies": {},
"peerDependencies": {
"react": ">= 16.0.0-alpha.12",
"react-native": ">= 0.45.0",
"@expo/config-plugins": ">=7.0.0"
},
"peerDependenciesMeta": {
"@expo/config-plugins": {
"optional": true
}
},
"devDependencies": {
"@expo/config-plugins": "^7.2.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"expo-module-scripts": "^3.0.0",
"prettier": "^2.8.8",
"@types/react": "^18.0.0",
"@types/react-native": "^0.70.0",
"typescript": "5.0.4"
},
"codegenConfig": {
"name": "RNMParticle",
"type": "all",
"jsSrcsDir": "js/codegenSpecs",
"android": {
"javaPackageName": "com.mparticle.react"
},
"ios": {
"RoktNativeLayout": "RoktNativeLayoutComponentView"
}
}
}