This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "wasp-ingest-nordic-cloud",
"version": "1.0.69",
"description": "WASP Ingest using nRF Cloud",
"type": "module",
"main": "app/index.js",
"scripts": {
"lint": "eslint .",
"depcheck": "depcheck",
"start": "node app/index.js",
"dev": "nodemon app/index.js | pino-colada",
"test": "NODE_ENV=test mocha --config ./test/mocharc.cjs ./test",
"test:integration": "NODE_ENV=test mocha --config ./test/mocharc.cjs ./test/integration",
"coverage": "c8 npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/wasp-ingest-nordic-cloud.git"
},
"engines": {
"node": ">=18.x.x",
"npm": ">=9.x.x"
},
"keywords": [
"WASP",
"Ingest",
"Nordic"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/wasp-ingest-nordic-cloud/issues"
},
"homepage": "https://github.com/digicatapult/wasp-ingest-nordic-cloud#readme",
"devDependencies": {
"chai": "^4.4.1",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"c8": "^8.0.1",
"pino-colada": "^2.2.2",
"prettier": "^3.2.5",
"supertest": "^6.3.4"
},
"dependencies": {
"dotenv": "^16.4.5",
"envalid": "^7.3.1",
"express": "^4.18.3",
"kafkajs": "^2.2.4",
"mqtt": "^5.3.6",
"pino": "^8.19.0",
"pino-http": "^8.6.1",
"uuid": "^9.0.1"
}
}