forked from antoniopresto/react-native-local-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.52 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
{
"name": "react-native-local-mongodb",
"version": "2.2.2",
"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"
],
"typings": "./lib/typings.d.ts",
"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.9.1",
"util": "0.10.3"
},
"peerDependencies": {
"react-native": "*"
},
"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 --verbose && npm run test-db",
"test-db": "./node_modules/.bin/mocha test/dbTest.js --reporter spec --timeout 10000"
},
"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"
}
}