UNPKG

iopa-tcp

Version:

API-First Transport Control Protocol (TCP) stack for Internet of Things (IoT), based on Internet of Protocols Alliance (IOPA) specification

42 lines 1.19 kB
{ "version": "0.2.0", "configurations": [ { "name": "demo", "type": "node", "request": "launch", "program": "${workspaceRoot}/demo.js", "stopOnEntry": false, "args": [], "cwd": "${workspaceRoot}", "preLaunchTask": null, "runtimeExecutable": null, "runtimeArgs": [ "--nolazy" ], "env": { "NODE_ENV": "development" }, "externalConsole": false, "sourceMaps": false, "outDir": null }, { "name": "test spec.js", "type": "node", "request": "launch", "program": "${workspaceRoot}/node_modules/.bin/_mocha", "stopOnEntry": false, "args": ["--reporter", "spec", "test"], "cwd": "${workspaceRoot}", "preLaunchTask": null, "runtimeExecutable": null, "runtimeArgs": [ "--nolazy" ], "externalConsole": false, "sourceMaps": false, "outDir": null } ] }