-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathpackage.json
81 lines (81 loc) · 1.88 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
75
76
77
78
79
80
81
{
"name": "noblox.js",
"version": "6.0.2",
"description": "A Node.js API wrapper for Roblox.",
"main": "lib/index.js",
"types": "typings/index.d.ts",
"scripts": {
"docs": "jsdoc -c jsDocsConfig.json -r -t ./node_modules/better-docs",
"lint": "standard lib/",
"test": "jest",
"postinstall": "node postinstall.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/noblox/noblox.js.git"
},
"keywords": [
"roblox",
"bot",
"clans"
],
"dependencies": {
"@microsoft/signalr": "^8.0.7",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.10",
"entities": "^5.0.0",
"figlet": "^1.7.0",
"postman-request": "^2.88.1-postman.34"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/noblox/noblox.js/issues"
},
"author": "Suufi <[email protected]> (https://github.com/suufi)",
"contributors": [
"Joshua Lanese <[email protected]>",
"Neztore <[email protected]>",
"Alan Bixby <[email protected]> (https://alanbix.by)"
],
"homepage": "https://github.com/noblox/noblox.js",
"devDependencies": {
"@auto-it/conventional-commits": "^11.2.0",
"JSONStream": "^1.3.1",
"auto": "^11.2.0",
"better-docs": "2.7.3",
"dotenv": "16.4.5",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jsdoc": "4.0.3",
"standard": "^17.1.0"
},
"jest": {
"setupFiles": [
"dotenv/config"
],
"setupFilesAfterEnv": [
"jest-extended/all"
],
"coveragePathIgnorePatterns": [
"lib/party",
"lib/util",
"lib/internal",
"lib/cache",
"node_modules",
"lib/index.js",
"lib/options.js",
"lib/*/on*.js"
]
},
"auto": {
"plugins": [
"npm",
"conventional-commits"
],
"onlyPublishWithReleaseLabel": true
},
"engines": {
"node": ">=18.18"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}