-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
122 lines (122 loc) · 3.65 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": "@appzung/react-native-code-push",
"version": "11.0.0-rc3",
"description": "React Native plugin for the CodePush service",
"author": "Louis Lagrange <[email protected]> (https://github.com/Minishlink)",
"license": "MIT",
"homepage": "https://appzung.com",
"bugs": {
"email": "[email protected]"
},
"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": {
"clean": "shx rm -rf bin",
"setup": "npm install --quiet --no-progress",
"prebuild:tests": "npm run clean && npm run tslint",
"build:tests": "tsc",
"test": "npm run build:tests && npm run test:setup && npm run test:fast",
"test:android": "npm run build:tests && npm run test:setup:android && npm run test:fast:android",
"test:ios": "npm run build:tests && npm run test:setup:ios && npm run 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 \"{src,docs}/**/*.{ts,js,md}\" README.md react-native.config.js",
"tslint": "tslint -c tslint.json test/**/*.ts",
"prepare": "genversion src/internals/version.ts --esm -s && typedoc && bob build"
},
"repository": {
"type": "git",
"url": "https://github.com/appzung/react-native-code-push"
},
"dependencies": {
"code-push": "^4.2.3",
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@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": "file:./code-push-plugin-testing-framework",
"del": "v6.0.0",
"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",
"tslint": "^6.1.3",
"typedoc": "^0.27.7",
"typedoc-plugin-markdown": "^4.4.2",
"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
}
]
]
},
"keywords": [
"appzung",
"codepush",
"react-native",
"code",
"push",
"ota",
"live-updates",
"hot-updates",
"expo-updates",
"expo-ota",
"appcenter"
]
}