-
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.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 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": "react-native-vbump",
"version": "0.3.1",
"description": "A CLI tool to automatically increment version numbers for React Native projects",
"license": "MIT",
"author": "June Domingo <june.domingo@gmail.com>",
"type": "module",
"main": "dist/index.js",
"bin": {
"react-native-vbump": "dist/index.js",
"rnvb": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"keywords": [
"react-native",
"version",
"bump",
"android",
"ios",
"cli",
"automation",
"versioning",
"build-tools"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "esbuild src/index.js --bundle --platform=node --target=node20 --format=esm --outfile=dist/index.js --banner:js=\"#!/usr/bin/env node\" --external:inquirer --external:chalk --external:cli-table3 --external:commander",
"dev": "tsx src/index.js",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"test:verbose": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --verbose",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"inquirer": "^12.7.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/junedomingo/react-native-vbump.git"
},
"bugs": {
"url": "https://github.com/junedomingo/react-native-vbump/issues"
},
"homepage": "https://github.com/junedomingo/react-native-vbump#readme"
}