-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1009 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1009 Bytes
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
{
"name": "HSC-Tool",
"version": "1.0.0",
"author": "MarcosRigal <riveragavilanmarcos@gmail.com>",
"main": "index.js",
"license": "AGPL-3.0",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"jest-mock-extended": "^2.0.4",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"all": "npm test && deno run --allow-net ./src/main.ts"
},
"dependencies": {
"axios": "^0.26.1",
"cross-fetch": "^3.1.5",
"fetch-blob": "^3.1.5",
"node-fetch": "^3.2.3"
}
}