forked from dadi/api-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 KB
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": "@dadi/api-mongodb",
"version": "5.0.4",
"description": "A MongoDB adapter for DADI API",
"keywords": [
"dadi",
"api",
"connector",
"mongo",
"MongoDB",
"dadi-connector",
"dadi-api-connector",
"api-connector"
],
"main": "index.js",
"scripts": {
"test": "npm run test:fetch-data && npm run test:run",
"test:fetch-data": "npm explore @dadi/test-tools -- npm run download-api-snapshot -- \"$PWD/test\"",
"test:run": "rm -rf config/mongodb.test.json && eslint . && prettier --check **/*.js && env NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov ./node_modules/mocha/bin/_mocha test && ./node_modules/.bin/nyc report"
},
"author": "James Lambie <jameslambie@gmail.com>",
"license": "ISC",
"dependencies": {
"@dadi/metadata": "^2.0.0",
"convict": "^4.4.1",
"debug": "3.1.0",
"mongodb": "^2.2.35"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/api-mongodb.git"
},
"devDependencies": {
"@dadi/eslint-config": "latest",
"@dadi/prettier-config": "latest",
"@dadi/test-tools": "latest",
"colors": "^1.2.1",
"coveralls": "^3.0.1",
"env-test": "1.0.0",
"eslint": "^5.16.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mocha": "5.2.0",
"nyc": "^14.0.0",
"prettier": "^1.18.2",
"should": "11.2.1",
"sinon": "4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html}": [
"prettier --write",
"git add"
]
}
}