-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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
{
"name": "wrgl",
"version": "0.10.3",
"description": "client library for wrgl",
"type": "module",
"scripts": {
"cli": "ts-node src/cli.ts",
"test": "jest",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist build",
"ts-node": "ts-node"
},
"main": "dist/tsc/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wrgl/javascript-sdk.git"
},
"keywords": [
"wrgl"
],
"author": "Khoi Pham",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wrgl/javascript-sdk/issues"
},
"homepage": "https://github.com/wrgl/javascript-sdk#readme",
"devDependencies": {
"@ngneat/falso": "^4.0.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.23",
"@types/pako": "^1.0.3",
"@types/tar-fs": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"esbuild": "^0.14.29",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"tar-fs": "^2.1.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"form-data": "^4.0.0",
"gocsv": "^0.1.1",
"got": "^11.8.3",
"lodash": "^4.17.21"
}
}