-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "iniad-api-client",
"version": "0.0.0",
"description": "iniad-api-client is an unofficial client for INIAD API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "imoken",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/imoken777/INIAD-API-Client.git"
},
"bugs": "https://github.com/imoken777/INIAD-API-Client.git/issues",
"homepage": "https://github.com/imoken777/INIAD-API-Client.git/#readme",
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"iniad",
"api",
"node"
],
"files": [
"dist",
"src"
],
"scripts": {
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"build": "tsc"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@types/node": "^20.11.25",
"axios": "^1.6.7"
}
}