package.json 795 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{
  "name": "td-rest-connector",
  "version": "1.0.0",
  "description": "A Node.js connector for TDengine restful",
  "module": "src/TDengineRest.js",
  "main": "lib/TDengineclearRest.js",
  "license": "MIT",
  "scripts": {
    "prepare": "npm run build",
    "build": "esbuild --bundle --platform=node --outfile=lib/TDengineRest.js  ./TDengineRest.js",
    "build:dev": "esbuild --bundle --platform=node --outfile=dist/examples/show-database.js examples/show-database.js ",
    "build:test": "esbuild test/testRestConn.js   --bundle --platform=node --outfile=dist/tests/testRestConn.js ",
    "test": "node dist/tests/testRestConn.js"
  },
  "devDependencies": {
    "esbuild": "^0.12.25",
    "eslint": "^7.32.0",
    "assert": "^2.0.0"
  },
  "dependencies": {
21
    "node-fetch": "^3.x"
22 23
  }
}