forked from meteorrn/meteor-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.15 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@meteorrn/core",
"version": "2.29.0",
"description": "Meteor Client for React Native",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"prepare": "npm run build",
"release": "node scripts/release.mjs",
"check": "npm run lint && npm run test:coverage",
"test:coverage": "TS_NODE_TRANSPILE_ONLY=1 nyc --reporter=html --reporter=text mocha --node-option loader=ts-node/esm --node-option experimental-specifier-resolution=node 'test/**/*tests.js'",
"precommit": "lint-staged",
"prepush": "npm run check"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,yml,yaml}": "prettier --write"
},
"keywords": [
"react-component",
"ddp",
"meteor",
"react",
"react-native",
"ios",
"android"
],
"license": "MIT",
"dependencies": {
"@meteorrn/minimongo": "1.0.1",
"ejson": "2.2.3",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/preset-env": "7.19.4",
"@babel/register": "7.18.9",
"@istanbuljs/nyc-config-babel": "3.0.0",
"@react-native-community/netinfo": "*",
"@types/react": "^18.3.24",
"@types/react-native": "^0.72.8",
"babel-plugin-istanbul": "6.1.1",
"c8": "7.12.0",
"chai": "4.3.6",
"husky": "0.14.3",
"lint-staged": "15.4.3",
"metro-react-native-babel-preset": "0.66.2",
"mocha": "^10.8.2",
"mock-socket": "9.1.5",
"nyc": "15.1.0",
"prettier": "2.7.1",
"react": "*",
"rewiremock": "^3.14.6",
"sinon": "12.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.0",
"@types/node": "^20.12.12"
},
"peerDependencies": {
"@react-native-community/netinfo": "*",
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">= 14.x"
},
"exports": {
".": "./dist/src/index.js",
"./lib/*": "./dist/lib/*.js",
"./src/*": "./dist/src/*.js",
"./helpers/*": "./dist/helpers/*.js",
"./package.json": "./package.json"
},
"files": [
"dist"
]
}