forked from antoniopresto/react-native-local-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "react-native-local-mongodb",
"version": "4.0.1",
"author": "Antonio Presto <antoniopresto@gmail.com>",
"contributors": [
"Antonio Presto",
"xh-lin"
],
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/jest --verbose && npm run test-db",
"test-db": "npx mocha test/dbTest.test.js --reporter spec --timeout 10000",
"prepare": "husky install"
},
"main": "index",
"typings": "index.d.ts",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/antoniopresto/react-native-local-mongodb/issues"
},
"description": "react-native local mongodb storage. Embedded persistent or in memory database for react-native. API is a subset of MongoDB's and it's plenty fast.",
"keywords": [
"database",
"datastore",
"embedded",
"react-native",
"mongodb"
],
"homepage": "https://github.com/antoniopresto/react-native-local-mongodb",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/antoniopresto/react-native-local-mongodb.git"
},
"dependencies": {
"@seald-io/binary-search-tree": "^1.0.3",
"async": "2.6.4",
"events": "^3.3.0",
"underscore": "^1.13.8"
},
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@react-native-async-storage/async-storage": "^2.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"@types/react-native": "^0.66.9",
"babel-jest": "^30.2.0",
"chai": "^6.2.2",
"husky": "^7.0.4",
"jest": "^30.2.0",
"mocha": "^11.7.5",
"prettier": "2.5.1",
"react-native": "^0.83.1",
"ts-jest": "^29.4.6",
"typescript": "4.5.4"
},
"directories": {
"test": "test"
}
}