-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.27 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
60
{
"name": "mongo-iterable-cursor",
"version": "2.0.0",
"description": "Turn your mongodb cursor into an async iterable",
"keywords": [
"async",
"cursor",
"iterable",
"mongodb"
],
"author": "Dieter Luypaert <[email protected]>",
"license": "MIT",
"repository": "[email protected]:Moeriki/mongo-iterable-cursor.git",
"files": [
"index.js"
],
"engines": {
"node": ">=10"
},
"main": "index.js",
"scripts": {
"lint": "eslint --cache index.js test/",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"register-toggle": "^2.1.0"
},
"peerDependencies": {
"mongodb": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"mongodb": "^2.2.36",
"prettier": "~1.18.2"
},
"eslintConfig": {
"root": true,
"env": {
"jest": true
},
"extends": [
"airbnb-base",
"plugin:prettier/recommended"
],
"rules": {
"no-await-in-loop": "off",
"no-restricted-syntax": "off"
}
},
"prettier": {
"singleQuote": true,
"arrowParens": "always"
}
}