forked from Leanplum/Leanplum-ReactNative-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
{
"name": "@leanplum/react-native-sdk",
"title": "React Native Leanplum",
"version": "2.0.0",
"description": "Mobile Marketing Platform. Integrated. ROI Engine.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"watch": "npx tsc -w",
"build": "yarn clean && npx tsc",
"local-publish": "npx yalc publish --push",
"prepublish": "yarn build",
"test": "npx jest",
"clean": "run-script-os",
"clean:windows": "if exist dist rmdir /q /s dist",
"clean:nix": "rm -rf dist",
"typedoc": "npx typedoc",
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"prepare": "yarn clean:plugin && yarn build:plugin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leanplum/Leanplum-ReactNative-SDK.git",
"baseUrl": "https://github.com/Leanplum/Leanplum-ReactNative-SDK"
},
"keywords": [
"react-native"
],
"author": {
"name": "Leanplum",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"license": "SEE LICENSE IN LICENSE",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": "*",
"react-native": ">=0.59.0-rc.0 <1.0.x"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@expo/config-types": "^43.0.1",
"@types/jest": "^26.0.15",
"@types/react-native": "^0.63.30",
"babel-jest": "^26.6.1",
"babel-plugin-module-resolver": "^4.0.0",
"expo-module-scripts": "^2.0.0",
"jest": "^26.6.1",
"react": "^17.0.1",
"react-native": "<0.63.x",
"react-native-gesture-handler": "^1.8.0",
"react-native-reanimated": "^1.13.1",
"run-script-os": "^1.1.3",
"typedoc": "^0.19.2",
"typescript": "^4.0.5",
"yalc": "^1.0.0-pre.45"
},
"dependencies": {
"@expo/config-plugins": "^4.0.6",
"clevertap-react-native": "0.9.4"
}
}