This repository was archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.86 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.86 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
51
52
53
54
55
56
57
58
{
"name": "@holores/holoapi",
"version": "1.0.6",
"description": "A Javascript library for the Holotools API.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -d",
"test": "mocha -r ts-node/register test/*.ts --timeout 5000",
"test:commonjs": "npm run build && mocha --timeout 5000",
"test:full": "npm run test && npm run test:commonjs",
"docs": "typedoc --theme ./node_modules/typedoc-neo-theme/bin/default --plugin typedoc-neo-theme --excludeInternal --out docs src/index.ts src/types.ts",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"publish:prepare": "npm run lint:fix && npm run test:full && npm run docs",
"publish:patch": "npm version patch && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public",
"publish:major": "npm version major && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HoloRes/holotools-api.git"
},
"keywords": [
"hololive",
"holotools",
"api"
],
"author": "Hololive Resort website team",
"license": "MIT",
"bugs": {
"url": "https://github.com/HoloRes/holotools-api/issues"
},
"homepage": "https://holores.github.io/holotools-api/modules/index.html",
"devDependencies": {
"@tsconfig/node14": "1.0.0",
"@types/chai": "4.2.15",
"@types/mocha": "8.2.1",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"chai": "4.3.0",
"chai-as-promised": "7.1.1",
"eslint": "7.20.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"mocha": "8.3.0",
"ts-node": "9.1.1",
"typedoc": "0.20.27",
"typedoc-neo-theme": "1.1.0",
"typescript": "4.1.5"
},
"dependencies": {
"axios": "^0.21.1"
},
"directories": {
"doc": "docs"
}
}