-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·57 lines (57 loc) · 1.39 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
{
"name": "react-native-keyframes",
"version": "2.0.1",
"description": "React Native wrapper for Facebook Keyframes with a imperative API",
"main": "index.js",
"scripts": {
"prettier": "prettier --single-quote --trailing-comma all --bracket-spacing --write \"**/*.js\"",
"release": "release-it",
"test": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ptomasroos/react-native-keyframes.git"
},
"keywords": [
"react-native-keyframes",
"react-component",
"react-components",
"react",
"native",
"keyframes",
"react-native",
"animation",
"ios",
"android"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/prettier --single-quote --trailing-comma all --bracket-spacing --write",
"git add"
]
},
"author": "Tomas Roos <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react-native": "*",
"react": "*"
},
"devDependencies": {
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.4",
"flow-bin": "^0.78.0",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"release-it": "^7.6.3"
},
"bugs": {
"url": "https://github.com/ptomasroos/react-native-keyframes/issues"
},
"homepage": "https://github.com/ptomasroos/react-native-keyframes#readme"
}