-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.57 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
{
"name": "techhost-api-wrapper",
"version": "0.0.8",
"description": "An open source API wrapper for TechHost API.",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npm run lint && npm run prettier && npm run compile",
"compile": "tsc",
"document": "typedoc src/index.ts",
"lint": "eslint src/**/*.ts --fix",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"prettier": "prettier --write src/**/*.ts --cache",
"preversion": "npm run lint",
"start": "npm ci && npm run build && node .",
"test": "eslint src && prettier --check src/**/*.ts && tsc --noEmit",
"version": "npm run prettier && git add -A src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NotReallyEight/techhost-api-wrapper.git"
},
"keywords": [
"techhost",
"techhost-api-wrapper",
"techhost-api"
],
"author": "NotReallyEight",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NotReallyEight/techhost-api-wrapper/issues"
},
"homepage": "https://github.com/NotReallyEight/techhost-api-wrapper#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^16.11.19",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"prettier": "^2.5.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"@sapphire/async-queue": "^1.1.9",
"form-data": "^4.0.0",
"tslib": "^2.3.1"
}
}