package.json
{
"name": "react-native-use-styles",
"version": "1.3.7",
"description": "React Native useStyles",
"main": "index.js",
"module": "src/index.js",
"types": "index.d.ts",
"files": [
"cjs",
"README.md",
"LICENSE.md",
"USER_GUIDE.md",
"index.js",
"index.d.ts"
],
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"test:coverage": "jest --collect-coverage",
"build": "cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c",
"prepare": "npm run build",
"lint": "eslint *.js **/*.js",
"check:types": "tsc",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rootstrap/react-native-use-styles.git"
},
"keywords": [
"react",
"react-native",
"styles",
"namespace",
"hooks",
"classes",
"CSS"
],
"author": "AgustÃn Prieto <agustin@rootstrap.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rootstrap/react-native-use-styles/issues"
},
"homepage": "https://github.com/rootstrap/react-native-use-styles#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-strip": "^2.0.0",
"@testing-library/react-native": "^7.0.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^2.2.0",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^4.3.0",
"jest": "^24.9.0",
"prettier": "^2.1.2",
"react": "^16.8.0",
"react-native": "^0.59.0",
"react-test-renderer": "^16.8.0",
"rollup": "^1.29.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-native": "^0.59.0",
"react-test-renderer": "^16.8.0"
},
"husky": {
"hooks": {
"pre-push": "npm test && npm run lint"
}
}
}