-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
74 lines (74 loc) · 2.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bloxy",
"private": false,
"version": "5.8.0",
"engines": {
"node": ">=12.0.0"
},
"main": "./dist/index.js",
"description": "A Node.JS library for interacting with the Roblox website and its API.",
"bugs": {
"url": "https://github.com/visualizememe/bloxy/issues"
},
"repository": {
"directory": "https://github.com",
"url": "https://github.com/visualizememe/bloxy",
"type": "github"
},
"homepage": "https://bloxy.js.org/",
"scripts": {
"test": "jest",
"test-with-coverage": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage",
"build": "tsc --skipLibCheck",
"eslint": "eslint . --ext .ts",
"prepublishOnly": "npm run build",
"create-docs": "typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --namedAnchors --excludeExternals --out docs src && mkdocs build",
"prepare-windows": "npm install && npm run build && npm run create-docs && echo 'Finished'"
},
"types": "./dist/index.d.ts",
"keywords": [
"roblox",
"roblox api",
"roblox group",
"roblox groups",
"bloxy",
"nodejs roblox",
"roblox nodejs",
"roblox module"
],
"author": "ScriptBased",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.2",
"@types/tough-cookie": "^4.0.2",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"codacy-coverage": "^3.4.0",
"eslint": "^8.45.0",
"eslint-plugin-security": "^1.7.1",
"faker": "^6.6.6",
"fast-check": "^3.11.0",
"got": "^13.0.0",
"jest": "^29.6.1",
"joi": "^17.9.2",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typedoc-plugin-markdown-pages": "^0.3.0",
"typescript": "^5.1.6",
"yarn-upgrade-all": "^0.7.2"
},
"dependencies": {
"debug": "^4.3.4",
"signalr-client": "^0.0.20",
"tough-cookie": "^4.1.3",
"tslib": "^2.6.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/"
},
"optionalDependencies": {}
}