forked from kiddkai/react-native-gestures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "react-native-gestures",
"version": "0.3.0",
"description": "composable gesture system in react native",
"main": "src/index.js",
"scripts": {
"test": "standard src/*.js && mocha --compilers js:babel/register --recursive --require should"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiddkai/react-native-gestures.git"
},
"keywords": [
"react-native",
"react-component",
"ios",
"gestures",
"pinch",
"zoom",
"drag",
"drop"
],
"author": "kiddkai",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiddkai/react-native-gestures/issues"
},
"homepage": "https://github.com/kiddkai/react-native-gestures#readme",
"devDependencies": {
"babel": "^5.8.29",
"mocha": "^2.3.3",
"proxyquire": "^1.7.3",
"should": "^7.1.1",
"sinon": "^1.17.2",
"standard": "^5.3.1"
},
"dependencies": {
"curry": "^1.2.0",
"immutable": "^3.7.5",
"ramda": "^0.19.1",
"rx": "^4.0.6",
"transducers.js": "^0.3.2"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}