react95-native
Version:
Refreshed Windows 95 style UI components for your React Native app
165 lines (164 loc) • 4.02 kB
JSON
{
"name": "react95-native",
"version": "1.0.0",
"description": "Refreshed Windows 95 style UI components for your React Native app",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/react95"
},
{
"type": "patreon",
"url": "https://www.patreon.com/arturbien"
}
],
"contributors": [
{
"name": "Artur Bień",
"email": "artur.bien+react95@gmail.com",
"url": "https://www.linkedin.com/in/arturbien/"
},
{
"name": "Luiz Baldi",
"email": "baldilp@gmail.com",
"url": "https://www.linkedin.com/in/luizbaldi/"
}
],
"main": "dist/commonjs/index",
"module": "dist/module/index",
"types": "dist/typescript/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"cz": "git-cz",
"test": "jest ./src",
"test:ci": "jest ./src --maxWorkers=2",
"test:watch": "jest ./src --watch",
"test:coverage": "jest ./src --coverage",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typescript": "tsc --noEmit",
"build": "bob build",
"semantic-release": "semantic-release",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"keywords": [
"react-native",
"ios",
"android",
"windows95",
"components",
"vaporwave"
],
"repository": {
"type": "git",
"url": "https://github.com/react95-io/react95-native"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/react95-io/react95-native/issues"
},
"homepage": "https://github.com/react95-io/react95-native#readme",
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@react-native-community/bob": "^0.16.2",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.6.0",
"commitizen": "^4.2.2",
"commitlint": "^8.3.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.5.3",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "16.11.0",
"react-native": "0.62.2",
"react-test-renderer": "^17.0.1",
"semantic-release": "^17.3.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/dist/"
],
"setupFilesAfterEnv": [
"./jest.setup.ts"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && yarn typescript"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"@react-native-community/bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
],
"files": [
"src/"
]
},
"dependencies": {
"@callstack/react-theme-provider": "^2.1.0"
}
}