-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "@quannadev/lakefs-ts",
"version": "1.0.5",
"description": "Lakefs api for nodejs",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.json --no-cache",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/quannadev/lakefs-ts.git"
},
"keywords": [
"lakefs",
"api",
"typescript",
"lakefs-ts"
],
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/form-data": "^2.5.0",
"axios": "^1.5.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^16.18.48",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^4.4.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@quannadev"
},
"bugs": {
"url": "https://github.com/quannadev/lakefs-ts/issues"
},
"homepage": "https://github.com/quannadev/lakefs-ts#readme",
"directories": {
"example": "examples",
"test": "tests"
}
}