This repository was archived by the owner on Apr 13, 2025. 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
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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
59
{
"name": "booyapi",
"version": "1.0.13",
"description": "Booyah! RestAPI and Chat Client",
"main": "es/index.js",
"types": "es/index.d.ts",
"files": [
"es/**/*"
],
"engineStrict": true,
"scripts": {
"test": "jest --passWithNoTests",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc --project ./tsconfig.build.json",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"version": "npm run fix && git add -A src",
"postversion": "git push && git push --tags",
"docs": "typedoc --out docs src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retrixuy/booyapi.git"
},
"keywords": [
"library",
"typescript",
"js",
"docs",
"booyah",
"brunenger"
],
"author": "RetrixUY retrixuy@gmail.com",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/retrixuy/booyapi/#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@types/jest": "^26.0.23",
"@types/node": "^15.14.0",
"@types/uuid": "^8.3.1",
"@types/ws": "^7.4.7",
"babel-jest": "^27.0.6",
"gts": "^3.1.0",
"jest": "^27.0.3",
"ts-jest": "27.0.2",
"typedoc": "^0.21.2",
"typedoc-plugin-markdown": "^3.10.2",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.4",
"ts-case-convert": "^1.3.1",
"uuid": "^8.3.2",
"ws": "^8.2.2"
}
}