forked from software-mansion/react-native-reanimated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "react-native-reanimated",
"version": "1.3.0",
"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",
"mock.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kmagiera/react-native-reanimated.git"
},
"author": {
"email": "[email protected]",
"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": {},
"devDependencies": {
"@types/react": "^16.9.0",
"@types/react-native": "^0.61.0",
"babel-jest": "^24.9.0",
"husky": "^0.14.3",
"jest": "^24.9.0",
"lint-staged": "^8.0.0-beta.1",
"prettier": "^1.13.7",
"react": "^16.9.0",
"react-native": "^0.61.0",
"react-test-renderer": "16.9.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}