-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "c3po",
"version": "1.0.0",
"description": "The c3po converts OpenAPI schema to W3C WoT Thing Descriptions",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"build": "npm --prefix libs/thingweb.node-wot/ install && npm --prefix libs/thingweb.node-wot/ run build",
"commit": "git-cz",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"@node-wot/binding-coap": "./libs/thingweb.node-wot/packages/binding-coap",
"@node-wot/binding-http": "./libs/thingweb.node-wot/packages/binding-http",
"@node-wot/core": "./libs/thingweb.node-wot/packages/core",
"@node-wot/td-tools": "./libs/thingweb.node-wot/packages/td-tools",
"axios": "^0.25.0",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-openapi-validator": "^4.13.1",
"ioredis": "^4.28.3",
"openapi-schema-validator": "^9.3.0",
"pino": "^6.13.2",
"pino-multi-stream": "^6.0.0",
"pino-pretty": "^7.0.0",
"pino-tee": "^0.3.0",
"require-dir": "^1.2.0",
"stream": "^0.0.2",
"swagger-ui-express": "^4.1.6",
"valid-url": "^1.0.9"
},
"author": {
"name": "Ivan Zyrianoff",
"email": "[email protected]"
},
"contributors": [
"Luca Cotugno - [email protected]"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/multer": "^1.4.7",
"@types/swagger-ui-express": "^4.1.3",
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^3.0.1",
"husky": "^7.0.2",
"jest": "^27.2.0",
"supertest": "^6.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}