-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 1.56 KB
/
package.json
File metadata and controls
executable file
·72 lines (72 loc) · 1.56 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": "cobrowse-sdk-react-native",
"version": "3.6.0",
"description": "Cobrowse SDK for React Native",
"main": "lib/module/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "js/index",
"scripts": {
"lint": "ts-standard",
"lint:fix": "npm run lint -- --fix",
"start:dev": "nodemon --exec ./scripts/copy.sh",
"prepack": "bob build"
},
"author": {
"name": "Andy Pritchard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cobrowseio/cobrowse-sdk-react-native.git"
},
"homepage": "https://github.com/cobrowseio/cobrowse-sdk-react-native",
"keywords": [
"react",
"react-native",
"react-component",
"ios",
"android",
"cobrowse",
"cobrowseio"
],
"license": "Apache-2.0",
"optionalDependencies": {
"@types/react": "^18.0.24",
"@types/react-native": "^0.70.6"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/react": "^18.0.24",
"@types/react-native": "^0.70.6",
"nodemon": "^2.0.20",
"react-native-builder-bob": "^0.20.4",
"ts-standard": "^12.0.2",
"typescript": "^4.8.4"
},
"ts-standard": {
"project": "tsconfig.eslint.json",
"env": [
"jest"
],
"ignore": [
"lib"
]
},
"react-native-builder-bob": {
"source": "js",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}