-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
executable file
·59 lines (59 loc) · 1.64 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
{
"name": "react-native-local-mongodb",
"version": "4.0.0",
"author": "Antonio Presto <[email protected]>",
"contributors": [
"Antonio Presto"
],
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/jest --verbose && npm run test-db",
"test-db": "./node_modules/.bin/mocha test/dbTest.test.js --reporter spec --timeout 10000"
},
"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://[email protected]/antoniopresto/react-native-local-mongodb.git"
},
"dependencies": {
"async": "2.6.2",
"binary-search-tree": "0.2.5",
"events": "1.1.0",
"underscore": "^1.13.2",
"util": "0.10.3"
},
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "1.15.13",
"@types/react-native": "^0.66.9",
"babel-preset-env": "1.6.1",
"@types/jest": "27.0.3",
"@types/node": "16.11.12",
"jest": "27.4.5",
"ts-jest": "27.1.1",
"typescript": "4.5.4",
"chai": "3.2.0",
"mocha": "^5.2.0",
"react-native": "latest",
"sinon": "1.3.x",
"prettier": "2.5.1"
},
"directories": {
"test": "test"
}
}