mirror of
https://github.com/zhigang1992/react-native-reanimated.git
synced 2026-01-12 22:50:47 +08:00
75 lines
2.1 KiB
JSON
75 lines
2.1 KiB
JSON
{
|
|
"name": "react-native-reanimated",
|
|
"version": "1.0.1",
|
|
"description": "More powerful alternative to Animated library for React Native.",
|
|
"scripts": {
|
|
"start": "node node_modules/react-native/local-cli/cli.js start",
|
|
"test": "npm run format && npm run lint && npm run test:unit",
|
|
"test:unit": "jest",
|
|
"format": "prettier --write --list-different './src/**/*.js'",
|
|
"lint": "eslint --fix './src/**/*.js'",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"main": "src/Animated.js",
|
|
"types": "react-native-reanimated.d.ts",
|
|
"files": [
|
|
"src/",
|
|
"android/src/main/AndroidManifest.xml",
|
|
"android/src/main/java/",
|
|
"android/build.gradle",
|
|
"ios/",
|
|
"RNReanimated.podspec",
|
|
"README.md",
|
|
"react-native-reanimated.d.ts"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/kmagiera/react-native-reanimated.git"
|
|
},
|
|
"author": {
|
|
"email": "krzys.magiera@gmail.com",
|
|
"name": "Krzysztof Magiera"
|
|
},
|
|
"license": "MIT",
|
|
"readmeFilename": "README.md",
|
|
"bugs": {
|
|
"url": "https://github.com/kmagiera/react-native-reanimated/issues"
|
|
},
|
|
"homepage": "https://github.com/kmagiera/react-native-reanimated#readme",
|
|
"dependencies": {},
|
|
"peerDependencies": {
|
|
"react": "16.0.0-alpha.6",
|
|
"react-native": "^0.44.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^8.2.3",
|
|
"babel-jest": "23.0.1",
|
|
"babel-preset-react-native": "4.0.0",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-prettier": "^2.9.0",
|
|
"eslint-config-standard": "^11.0.0",
|
|
"eslint-plugin-import": "^2.12.0",
|
|
"eslint-plugin-jest": "^21.17.0",
|
|
"eslint-plugin-node": "^6.0.1",
|
|
"eslint-plugin-promise": "^3.8.0",
|
|
"eslint-plugin-react": "^7.9.1",
|
|
"eslint-plugin-react-native": "^3.2.1",
|
|
"eslint-plugin-standard": "^3.1.0",
|
|
"husky": "^0.14.3",
|
|
"jest": "23.1.0",
|
|
"jest-react-native": "18.0.0",
|
|
"lint-staged": "^8.0.0-beta.1",
|
|
"prettier": "^1.13.4",
|
|
"react": "16.4.1",
|
|
"react-dom": "^16.0.0-beta.5",
|
|
"react-native": "^0.56.0",
|
|
"react-test-renderer": "^16.0.0-alpha.12"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|