forked from antoniopresto/react-native-local-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.34 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
{
"name": "react-native-local-mongodb",
"version": "2.1.0",
"author": "Antonio Presto <[email protected]>",
"contributors": [
"Antonio Presto"
],
"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": "0.2.10",
"babel-preset-env": "^1.6.1",
"binary-search-tree": "0.2.5",
"events": "^1.1.0",
"underscore": "~1.4.4",
"util": "0.10.3"
},
"devDependencies": {
"chai": "^3.2.0",
"jest": "22.3.0",
"mocha": "1.4.x",
"request": "2.9.x",
"sinon": "1.3.x"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/jest --watch --verbose"
},
"jest": {
"moduleNameMapper": {
"react-native": "<rootDir>/config/jest/reactNativeMock.js"
}
},
"main": "index",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/antoniopresto/react-native-local-mongodb/issues"
},
"directories": {
"test": "test"
}
}