This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@bonniernews/lu-test",
"version": "10.1.1",
"description": "Test helpers.",
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"mocha": "mocha",
"lint": "eslint .",
"test": "mocha && eslint --ext js . --cache && depcheck --ignores=\"prettier\"",
"format": "prettier {,**/,**/**,**/**/**}*.{js,json,md} --write && eslint . --fix",
"prettier": "prettier {,**/,**/**,**/**/**}*.{js,json,md}",
"prettier:apply": "npm run prettier -- --write",
"coverage": "c8 --all npm test",
"check-coverage": "c8 check-coverage",
"local-coverage": "c8 --reporter html npm test && c8 check-coverage || open ./coverage/index.html"
},
"type": "module",
"keywords": [],
"author": "Bonnier News",
"license": "MIT",
"dependencies": {
"@google-cloud/pubsub": "^4.0.7",
"@google-cloud/storage": "^7.7.0",
"@google-cloud/tasks": "^5.1.1",
"basic-ftp": "^5.0.3",
"chai": "^4.3.10",
"csv-parse": "^5.5.2",
"event-stream": "^4.0.1",
"exp-config": "^4.2.1",
"google-auth-library": "^9.4.1",
"iconv-lite": "^0.6.3",
"mocha": "^10.2.0",
"mocha-cakes-2": "^3.3.0",
"nock": "^13.4.0",
"sinon": "^17.0.1",
"ssh2-sftp-client": "^9.1.0",
"supertest": "^7.0.0"
},
"devDependencies": {
"@bonniernews/eslint-config": "^1.1.0",
"axios": "^1.6.2",
"c8": "^9.1.0",
"chai-exclude": "^2.1.0",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-plugin-json": "^3.1.0",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"prettier": "^3.1.0",
"test-data": "file:./test/data"
},
"overrides": {
"google-gax@<3.6.1": "^3.6.1"
},
"files": [
"index.js",
"test/helpers/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BonnierNews/lu-test.git"
},
"bugs": {
"url": "https://github.com/BonnierNews/lu-test/issues"
},
"homepage": "https://github.com/BonnierNews/lu-test#readme"
}