-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
54
55
56
57
58
59
60
{
"name": "@holores/holodex",
"version": "1.2.4",
"description": "A Typescript library for the Holodex API.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -d",
"test": "mocha -r ts-node/register test/*.ts --timeout 10000",
"test:commonjs": "pnpm build && mocha --timeout 10000",
"test:full": "pnpm run test && pnpm run test:commonjs",
"docs": "typedoc --excludeInternal --out docs src/index.ts src/types.ts",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"prepublishOnly": "pnpm run lint:fix && pnpm run build && pnpm run test:full && pnpm run docs"
},
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@tsconfig/node-lts": "^18.12.3",
"@types/chai": "4.3.20",
"@types/chai-as-promised": "7.1.8",
"@types/mocha": "10.0.9",
"@types/node": "20.17.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "2.31.0",
"mocha": "10.8.2",
"np": "8.0.4",
"ts-node": "10.9.2",
"typedoc": "0.26.11",
"typescript": "5.6.3"
},
"keywords": [
"hololive",
"holodex",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/HoloRes/holodex-api.git"
},
"author": "Ninjastahr",
"license": "MIT",
"bugs": {
"url": "https://github.com/HoloRes/holodex-api/issues"
},
"homepage": "https://github.com/HoloRes/holodex-api#readme",
"directories": {
"doc": "docs"
},
"publishConfig": {
"access": "public"
}
}