This repository has been archived by the owner on Feb 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"author": "Sphiinx",
"license": "MIT",
"name": "runescape-account-creator",
"version": "2.0.4",
"description": "An implementation in JavaScript for Node.js that provides the ability to create accounts for the video game Old School RuneScape®.",
"main": "index.js",
"directories": {
"lib": "src",
"example": "examples"
},
"files": [
".env.example",
"index.js",
"examples/**/*.js",
"src/**/*.js"
],
"scripts": {
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"lint": "eslint src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"api",
"captcha",
"two_captcha",
"2captcha",
"runescape",
"osrs",
"2007scape",
"account creator"
],
"repository": {
"type": "git",
"url": "https://github.com/Sphiinx/runescape-account-creator"
},
"dependencies": {
"@hapi/joi": "^15.0.3",
"@infosimples/node_two_captcha": "^1.0.2",
"cheerio": "^1.0.0-rc.3",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"faker": "^4.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"socks-proxy-agent": "^4.0.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jsdoc": "^3.6.2",
"standard": "^12.0.1"
}
}