-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.05 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
{
"name": "edge-webhook-relay",
"version": "1.0.5-alpha.4",
"description": "Webhook edge relay service for github to openshift",
"repository": {
"type": "git",
"url": "git@github.com:natlibfi/edge-webhook-relay.git"
},
"author": {
"name": "The National Library of Finland"
},
"keywords": [],
"homepage": "https://github.com/natlibfi/edge-webhook-relay",
"bugs": {
"url": "https://github.com/natlibfi/edge-webhook-relay/issues"
},
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "npm run build",
"start": "node dist/index.js",
"start:dev": "babel-node ./src/index",
"lint": "eslint src",
"lint:dev": "eslint --fix src",
"test": "npm run lint",
"test:dev": "clear && npm run lint:dev",
"build": "babel src --source-maps --copy-files --delete-dir-on-start --out-dir=dist",
"dev": "cross-env DEBUG=@natlibfi/* NODE_ENV=development nodemon",
"dev:test": "cross-env DEBUG=@natlibfi/* NODE_ENV=test nodemon -w src -w test-fixtures"
},
"dependencies": {
"@babel/runtime": "^7.25.0",
"@natlibfi/melinda-backend-commons": "^2.3.1",
"@natlibfi/melinda-commons": "^13.0.16",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"http-status": "^1.7.4",
"ip-range-check": "^0.2.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.3",
"@babel/register": "^7.24.6",
"@natlibfi/eslint-config-melinda-backend": "^3.0.5",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"nodemon": "^3.1.4"
},
"eslintConfig": {
"extends": "@natlibfi/melinda-backend"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "maintained node versions"
}
]
]
},
"nodemonConfig": {
"exec": "DEBUG=@natlibfi* npm run lint:dev && npm run start:dev",
"watch": [
"src/*",
"package.json"
],
"ext": "js",
"delay": 2.5
}
}