forked from noblox/noblox.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.77 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
{
"name": "noblox.js",
"version": "4.8.6",
"description": "A Node.js wrapper for Roblox. (original from sentanos)",
"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": {
"bluebird": "^3.5.4",
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.10",
"entities": "^2.0.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]>"
],
"homepage": "https://github.com/noblox/noblox.js",
"devDependencies": {
"better-docs": "^2.3.2",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.4",
"jsdoc": "^3.6.6",
"JSONStream": "^1.3.1",
"progress": "^2.0.0",
"standard": "^16.0.0"
},
"jest": {
"setupFiles": [
"dotenv/config"
],
"coveragePathIgnorePatterns": [
"lib/party",
"lib/util",
"lib/internal",
"lib/cache",
"node_modules",
"lib/index.js",
"lib/options.js",
"lib/*/on*.js"
]
}
}