reason-react-native
Version:
ReScript bindings for React Native.
64 lines (63 loc) • 1.53 kB
JSON
{
"name": "reason-react-native",
"description": "ReScript bindings for React Native.",
"version": "0.64.0",
"peerDependencies": {
"bs-platform": "^8.2.0",
"react-native": "^0.64.0",
"reason-react": "^0.9.1"
},
"repository": "https://github.com/reason-react-native/reason-react-native.git",
"license": "MIT",
"keywords": [
"rescript",
"reason",
"reasonml",
"bucklescript",
"react-native"
],
"files": [
"*.md",
"bsconfig.json",
"src/**/*.re",
"src/**/*.js",
"!src/**/*.bs.js"
],
"scripts": {
"format:most": "prettier --write \"**/*.{md,json,js,css}\"",
"format:re": "find . -name \"*.re\" -or -name \"*.rei\" | grep -v \"node_modules\" | xargs bsrefmt --in-place",
"format": "yarn format:most && yarn format:re",
"re:start": "bsb -make-world -w",
"re:build": "bsb -make-world",
"re:clean-build": "bsb -clean-world -make-world",
"start": "yarn re:start",
"build": "yarn re:build",
"test": "yarn re:clean-build",
"release": "npmpub"
},
"devDependencies": {
"bs-platform": "^8.3.0",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"npm-run-all": "^3.0.0",
"npmpub": "^5.0.0",
"prettier": "^2.0.0",
"reason-react": "^0.9.1"
},
"prettier": {
"trailingComma": "all"
},
"lint-staged": {
"*.{md,json,js,css}": [
"prettier --write"
],
"*.{re,rei}": [
"bsrefmt --in-place"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}