-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "@devrev/ts-adaas",
"version": "1.2.0-beta.1",
"description": "DevRev ADaaS (AirDrop-as-a-Service) Typescript SDK.",
"type": "commonjs",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"start": "ts-node src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --forceExit --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devrev/adaas-sdk.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [],
"author": "devrev",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lambda-log": "^3.0.3",
"@types/node": "20.16.11",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@devrev/typescript-sdk": "^1.1.27",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"form-data": "^4.0.1",
"js-jsonl": "^1.1.1",
"lambda-log": "^3.1.0",
"ts-node": "^10.9.2"
},
"files": [
"dist"
]
}