-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
60 lines (60 loc) · 1.72 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
60
{
"name": "react-native-expanding-circle-transition",
"version": "1.2.4",
"private": false,
"main": "index.js",
"description": "Expanding circle transition using react-native Modal and Animated API",
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"mobile",
"ios",
"ui",
"animation",
"transition",
"circle",
"expanding circle"
],
"author": {
"name": "Alexandre Brillant",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/alexbrillant/react-native-expanding-circle-transition",
"bugs": {
"url": "https://github.com/alexbrillant/react-native-expanding-circle-transition/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/alexbrillant/react-native-expanding-circle-transition"
},
"scripts": {
"test": "jest --coverage",
"lint": "standard --verbose | snazzy",
"lintdiff": "git diff --name-only --cached --relative | grep '\\.js$' | xargs standard | snazzy",
"fixcode": "standard --fix"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"jest-cli": "^18.1.0",
"react": "15.4.2",
"react-native": "0.41.2",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "18.1.0",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native"
},
"config": {
"ghooks": {
"pre-commit": "if [ -d 'ignite-base' ]; then cd ignite-base; fi; npm run lint"
}
},
"dependencies": {
"react-mixin": "^2.0.2"
}
}