-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "tinybird-sdk",
"version": "0.5.0",
"description": "Tinybird Node.js SDK",
"main": "dist/index.js",
"scripts": {
"test": "mocha --timeout 60000 --require @babel/register",
"test:coverage": "nyc --reporter=html mocha --timeout 60000 --require @babel/register",
"test:watch": "mocha --timeout 60000 --require @babel/register -w",
"lint": "eslint -c .eslintrc.yml src/**",
"build": "babel src --out-dir dist && tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alejandromav/tinybird-nodejs-sdk.git"
},
"keywords": [
"tinybird",
"sdk"
],
"files": [
"dist"
],
"author": "Alejandro Martin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/alejandromav/tinybird-nodejs-sdk/issues"
},
"homepage": "https://github.com/alejandromav/tinybird-nodejs-sdk#readme",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.18.2",
"@babel/register": "^7.17.7",
"@types/node": "^18.0.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-minify": "^0.5.2",
"chai": "^4.3.6",
"eslint": "^8.16.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"form-data": "^4.0.0",
"json-2-csv": "^3.17.1",
"log4js": "^6.5.1",
"node-fetch": "^2.6.7"
}
}