This repository was archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "amqp10-converter",
"version": "0.1.0",
"description": "a protocol converter between AMQP1.0 and FIWARE IoTagent-json",
"main": "build/bundle.js",
"scripts": {
"lint": "eslint **/*.ts",
"server": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"build": "webpack",
"build:production": "webpack --mode=production",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Nobuyuki Matsui",
"license": "Apache-2.0",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.2",
"@types/log4js": "^2.3.5",
"@types/node": "^13.13.5",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"jest": "^26.0.1",
"jest-express": "^1.12.0",
"supertest": "^4.0.2",
"tmp-promise": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.3",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"ajv": "^6.12.3",
"axios": "^0.19.2",
"express": "^4.17.1",
"iotagent-node-lib": "^2.12.0",
"log4js": "^6.2.1",
"rhea-promise": "^1.0.0"
}
}