-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.85 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.85 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
128
129
130
131
{
"name": "@appzung/react-native-code-push",
"version": "11.0.3",
"description": "React Native plugin for the CodePush service",
"author": "Louis Lagrange <lagrange.louis@gmail.com> (https://github.com/Minishlink)",
"license": "MIT",
"homepage": "https://appzung.com",
"bugs": {
"email": "support@appzung.com"
},
"main": "./lib/commonjs/index.js",
"source": "./src/index.ts",
"module": "./lib/module/index.js",
"types": "./lib/typescript/commonjs/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/typescript/module/src/index.d.ts",
"default": "./lib/module/index.js"
},
"require": {
"types": "./lib/typescript/commonjs/src/index.d.ts",
"default": "./lib/commonjs/index.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"genversion": "genversion src/internals/version.ts --esm -s",
"prepare": "yarn genversion && typedoc && bob build",
"clean": "shx rm -rf bin",
"prebuild:tests": "yarn clean",
"build:tests": "tsc",
"test:android": "yarn build:tests && yarn test:setup:android && yarn test:fast:android",
"test:ios": "yarn build:tests && yarn test:setup:ios && yarn test:fast:ios",
"test:setup": "mocha --recursive bin/test --android --ios --setup",
"test:setup:android": "mocha --recursive bin/test --android --setup",
"test:setup:ios": "mocha --recursive bin/test --ios --setup",
"test:fast": "mocha --recursive bin/test --android --ios",
"test:fast:android": "mocha --recursive bin/test --android",
"test:fast:ios": "mocha --recursive bin/test --ios",
"test:debugger:android": "mocha --recursive --inspect-brk=0.0.0.0 bin/test --android",
"test:debugger:ios": "mocha --recursive --inspect-brk=0.0.0.0 bin/test --ios",
"test:types": "tsc --noEmit",
"test:format": "prettier --check \"docs/**/*.md\" README.md",
"test:lint": "eslint \"**/*.{js,ts,tsx}\"",
"test": "yarn test:lint && yarn test:format && yarn test:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appzung/react-native-code-push.git"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@react-native/eslint-config": "^0.78.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/assert": "^1.5.2",
"@types/hoist-non-react-statics": "^3.3.6",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^18.19.74",
"@types/q": "^1.5.4",
"archiver": "^7.0.1",
"body-parser": "^1.20.3",
"code-push-plugin-testing-framework": "workspace:./code-push-plugin-testing-framework",
"del": "v6.0.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"express": "^4.21.2",
"genversion": "^3.2.0",
"mkdirp": "latest",
"mocha": "^9.2.0",
"prettier": "^3.4.2",
"q": "^1.5.1",
"react-native-builder-bob": "^0.36.0",
"run-sequence": "latest",
"shx": "^0.3.4",
"slash": "^3.0.0",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.6.0",
"typescript": "^5.7.3"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"esm": true
}
],
[
"module",
{
"esm": true
}
],
[
"typescript",
{
"project": "tsconfig.build.json",
"esm": true
}
]
]
},
"workspaces": [
"code-push-plugin-testing-framework"
],
"keywords": [
"appzung",
"codepush",
"react-native",
"code",
"push",
"ota",
"live-updates",
"hot-updates",
"expo-updates",
"expo-ota",
"appcenter"
],
"packageManager": "yarn@4.8.1"
}