forked from inProgress-team/react-native-meteor
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
61
62
63
{
"name": "react-native-meteor",
"version": "2.0.2",
"description": "Full Meteor Client for React Native",
"main": "src/Meteor.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register --require test/setup --recursive",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/inProgress-team/react-native-meteor.git"
},
"keywords": [
"react-component",
"ddp",
"meteor",
"react",
"react-native",
"ios",
"android"
],
"author": "Théo Mathieu",
"license": "MIT",
"bugs": {
"url": "https://github.com/inProgress-team/react-native-meteor/issues"
},
"homepage": "https://github.com/inProgress-team/react-native-meteor#readme",
"dependencies": {
"crypto-js": "^3.1.6",
"ejson": "^2.1.2",
"minimongo-cache": "0.0.48",
"trackr": "^2.0.2",
"wolfy87-eventemitter": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-preset-react-native": "^4.0.0",
"chai": "^3.5.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^0.14.3",
"lint-staged": "^10.0.0-0",
"mocha": "^6.2.1",
"mock-socket": "^2.0.0",
"prettier": "^1.18.2",
"sinon": "^1.17.3"
},
"peerDependencies": {
"@react-native-community/netinfo": "^5.0.0",
"@react-native-community/async-storage": "^1.6.2",
"react": "*",
"react-native": ">= 0.49.0"
}
}