forked from noblox/noblox.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "noblox.js",
"version": "4.15.1",
"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": "eslint lib/",
"test": "jest",
"postinstall": "node postinstall.js"
},
"repository": {
"type": "git",
"url": "https://github.com/noblox/noblox.js.git"
},
"keywords": [
"roblox",
"bot",
"clans"
],
"dependencies": {
"@microsoft/signalr": "^8.0.0",
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.10",
"entities": "^4.3.0",
"figlet": "^1.4.0",
"request": "^2.81.0",
"request-promise": "^4.2.4",
"signalr-client": "0.0.20"
},
"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": "^10.30.0",
"auto": "^10.30.0",
"better-docs": "2.7.2",
"dotenv": "16.0.3",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"jsdoc": "3.6.10",
"JSONStream": "^1.3.1",
"progress": "^2.0.0",
"standard": "^17.0.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": ">=14.14.0"
}
}