-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.86 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
{
"name": "flux-mobile-cli",
"version": "0.4.0-beta.4",
"description": "Local-first CI/CD CLI tool for mobile developers. Build and deploy Flutter & React Native apps to Google Play Store and Apple App Store from your local machine.",
"main": "fluxm.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/integration",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/utils tests/commands tests/validation"
},
"bin": {
"fluxm": "./fluxm.js",
"flux-mobile": "./fluxm.js"
},
"type": "module",
"keywords": [
"flux-mobile",
"flux-mobile-cli",
"fluxm",
"ci",
"cd",
"cicd",
"deployment",
"mobile",
"flutter",
"react-native",
"ios",
"android",
"app-store",
"play-store",
"testflight",
"local-ci",
"build-automation",
"deploy-automation"
],
"author": "THECODEDANIEL",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TheCodeDaniel/flux-mobile-cli.git"
},
"bugs": {
"url": "https://github.com/TheCodeDaniel/flux-mobile-cli/issues"
},
"homepage": "https://github.com/TheCodeDaniel/flux-mobile-cli#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"execa": "^9.6.0",
"fs-extra": "^11.3.2",
"googleapis": "^164.1.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"ora": "^9.0.0",
"xml2js": "^0.6.2",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.2.0"
}
}