-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.15 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": "iotc-pnp-aidevkit-module",
"version": "3.0.28",
"description": "Local service for AI Dev Kit",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/jest/bin/jest.js",
"tslint": "node ./node_modules/tslint/bin/tslint -p ./tsconfig.json",
"build": "node ./node_modules/typescript/bin/tsc -p .",
"dockerbuild": "node ./scripts/dockerBuild.js --docker-build",
"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",
"repository": {
"type": "git",
"url": "git@github.com:sseiber/iotc-pnp-aidevkit-module.git"
},
"dependencies": {
"@hapi/boom": "^8.0.1",
"@hapi/good": "^8.2.3",
"@hapi/good-console": "^8.1.2",
"@hapi/good-squeeze": "^5.2.1",
"@hapi/hapi": "^18.4.0",
"@hapi/inert": "^5.2.2",
"@hapi/nes": "^11.2.2",
"azure-iot-device": "^1.12.0",
"azure-iot-device-mqtt": "^1.11.0",
"compare-versions": "^3.5.1",
"cookie": "^0.3.1",
"fs-extra": "^7.0.1",
"hapi-auth-jwt2": "8.6.0",
"ip": "^1.1.5",
"jsonfile": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"lodash.defaults": "^4.2.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"nconf": "^0.10.0",
"netmask": "^1.0.6",
"pjson": "^1.0.9",
"query-string": "^6.8.3",
"request": "^2.88.0",
"spryly": "^1.0.19",
"uuid": "^3.3.3",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/jest": "*",
"@types/nconf": "0.10.0",
"@types/node": "*",
"@types/request": "^2.48.3",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"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"
}
}
}