-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
47 lines (47 loc) · 960 Bytes
/
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
{
"name": "fortune-mongodb",
"description": "MongoDB adapter for Fortune.",
"version": "1.3.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fortunejs/fortune-mongodb"
},
"scripts": {
"lint": "eslint lib",
"test": "npm run lint && node test | tf-dot",
"postpublish": "git tag `npm v fortune-mongodb version` && git push origin --tags"
},
"main": "./lib/index.js",
"dependencies": {
"mongodb": "^3.1.8"
},
"devDependencies": {
"@tap-format/dot": "^0.3.0",
"chalk": "^2.4.1",
"eslint": "^5.7.0",
"eslint-config-boss": "^1.0.6",
"fortune": "^5.5.14",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"tapdance": "^5.1.1"
},
"files": [
"lib/",
"LICENSE"
],
"eslintConfig": {
"extends": "boss",
"rules": {
"strict": 0
}
},
"engines": {
"node": ">=8"
},
"keywords": [
"fortune",
"mongodb",
"adapter"
]
}