-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 2.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "link-proxy",
"version": "1.4.6",
"private": true,
"description": "Analyze links in your (geo)data catalogs",
"main": "index.js",
"repository": "https://github.com/geodatagouv/link-proxy",
"scripts": {
"lint": "xo",
"test": "jest --detectOpenHandles",
"start:web": "node index.js",
"start:worker": "node worker.js"
},
"dependencies": {
"@tusbar/cache-control": "^0.3.1",
"aws-sdk": "^2.418.0",
"bluebird": "^3.5.3",
"bull": "^3.7.0",
"bull-manager": "^1.1.4",
"bytes": "^3.1.0",
"date-fns": "^1.30.1",
"debug": "^4.1.1",
"del": "^4.0.0",
"got": "^9.6.0",
"ioredis": "^4.6.2",
"js-yaml": "^3.12.2",
"lodash": "^4.17.13",
"matcher": "^1.1.1",
"micro": "^9.3.3",
"microrouter": "^3.1.3",
"mongodb": "^3.1.13",
"ms": "^2.1.1",
"normalize-url": "^4.2.0",
"plunger": "^3.2.1",
"raven": "^2.6.4",
"unzip-stream": "^0.3.0",
"yazl": "^2.5.1"
},
"resolutions": {
"fsevents": "^2.0.1"
},
"devDependencies": {
"codecov": "^3.5.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"lerna-changelog": "^0.8.2",
"nock": "^10.0.6",
"xo": "^0.24.0"
},
"author": "Bertrand Marron <[email protected]>",
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__helpers__/"
],
"forceExit": true,
"reporters": [
"default",
[
"jest-junit",
{
"output": "reports/tests/junit.xml"
}
]
],
"globalSetup": "./jest.setup.js",
"globalTeardown": "./jest.teardown.js",
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"worker.js",
"jobs/**/*.js",
"lib/**/*.js"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"xo": {
"space": 2,
"semicolon": false,
"rules": {
"unicorn/no-process-exit": false
},
"overrides": [
{
"files": "__tests__/**/*.js",
"envs": [
"jest"
]
}
]
},
"changelog": {
"cacheDir": ".changelog",
"labels": {
"bug": ":bug: Bug Fix",
"cleanup": ":shower: Cleanup",
"documentation": ":memo: Documentation",
"enhancement": ":rocket: Enhancement",
"performance": ":racehorse: Performance",
"security": ":policeman: Security"
},
"repo": "geodatagouv/link-proxy"
}
}