react-native-integrate
Version:
Automate integration of additional code into React Native projects
155 lines (154 loc) • 4.32 kB
JSON
{
"name": "react-native-integrate",
"version": "3.15.4",
"description": "Automate integration of additional code into React Native projects",
"main": "lib/index.js",
"files": [
"!lib/__tests__/**/*",
"lib/**/*",
"bin/**/*"
],
"bin": {
"react-native-integrate": "bin/index.js",
"rni": "bin/index.js",
"rnu": "bin/upgrade-cli.js"
},
"scripts": {
"build": "tsc && cpy src/global.d.ts lib --flat",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint ./src/ --fix",
"start": "TS_NODE_FILES=true ts-node ./src/cli.ts",
"prepare": "husky",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest",
"typecheck": "tsc --noEmit",
"generate-schema": "typescript-json-schema ./src/types/mod.types.ts IntegrationConfig --ignoreErrors --noExtraProps --required -o ./src/schema/integrate.schema.json",
"generate-upgrade-schema": "typescript-json-schema ./src/types/upgrade.types.ts UpgradeConfig --ignoreErrors --noExtraProps --required -o ./src/schema/upgrade.schema.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-integrate/integrate.git"
},
"license": "MIT",
"author": {
"name": "Murat Mehmet",
"email": "muratmehmetbt@gmail.com",
"url": "https://github.com/murat-mehmet"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"react native",
"integrate",
"cli",
"typescript"
],
"bugs": {
"url": "https://github.com/react-native-integrate/integrate/issues"
},
"homepage": "https://github.com/react-native-integrate/integrate#readme",
"dependencies": {
"@clack/prompts": "^0.10.0",
"ajv": "^8.17.1",
"commander": "^13.1.0",
"glob": "^11.0.1",
"isomorphic-fetch": "^3.0.0",
"lodash.get": "^4.4.2",
"lodash.mergewith": "^4.6.2",
"lodash.set": "^4.3.2",
"picocolors": "^1.1.1",
"prettier": "^3.5.3",
"semver": "^7.7.1",
"simple-plist": "^1.3.1",
"xcode": "^3.0.1",
"xml2js": "^0.6.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^29.5.14",
"@types/lodash.get": "^4.4.9",
"@types/lodash.mergewith": "^4.6.9",
"@types/lodash.set": "^4.3.9",
"@types/node": "^24.2.1",
"@types/prettier": "^3.0.0",
"@types/semver": "^7.5.8",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"chalk": "^5.4.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cpy-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"execa": "^9",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.5",
"prettier-2": "npm:prettier@^2",
"semantic-release": "^24.2.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-json-schema": "^0.65.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}