-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.32 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
{
"name": "iotc-miab-gateway",
"version": "1.0.0",
"description": "Azure IoT Central edge gateway module for Manufacturing in a Box",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/jest/bin/jest.js",
"eslint": "eslint -c .eslintrc.json --ext .ts ./src",
"build": "node ./node_modules/typescript/bin/tsc -p .",
"dockerbuild": "npm run build && node ./scripts/dockerBuild.js --docker-build",
"dockerpush": "node ./scripts/dockerBuild.js --docker-push",
"preversion": "npm test",
"version": "node ./scripts/dockerBuild.js --docker-build",
"postversion": "node ./scripts/dockerBuild.js --docker-push",
"postinstall": "node ./scripts/setupDevEnvironment.js"
},
"author": "sseiber",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/hapi": "^20.2.2",
"@hapi/wreck": "^18.0.0",
"azure-iot-device": "1.18.0",
"azure-iot-device-mqtt": "^1.16.0",
"azure-iot-provisioning-device": "^1.9.0",
"azure-iot-provisioning-device-mqtt": "^1.8.0",
"azure-iot-security-symmetric-key": "^1.8.0",
"commander": "^9.3.0",
"fs-extra": "^10.1.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"node-opcua": "^2.70.3",
"pjson": "^1.0.9",
"spryly": "^2.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/hapi__hapi": "^20.0.12",
"@types/jest": "^28.1.0",
"@types/node": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"jest": "^28.1.0",
"ts-jest": "^28.0.4",
"typescript": "^4.7.2"
},
"jest": {
"rootDir": "./src/",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
".tsx?": "ts-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./__mocks__/fileMock.js"
}
}
}