This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "namemc",
"version": "3.6.0",
"description": "The unofficial Node JS package for looking up Minecraft users on Name MC",
"main": "lib/index.js",
"author": "Josh Merlino",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JoshMerlino/namemc.git"
},
"types": "./types.d.ts",
"keywords": [
"minecraft",
"web-scraping",
"minecraft-api",
"mojang",
"namemc",
"name-mc",
"unofficial-node-js",
"minecraft-users"
],
"bugs": {
"url": "https://github.com/JoshMerlino/namemc/issues"
},
"homepage": "https://github.com/JoshMerlino/namemc#readme",
"scripts": {
"watch-ts": "tsc -w",
"watch-js": "nodemon .",
"dev": "concurrently \"npm:watch-*\"",
"start": "tsc; clear && node .",
"prepare": "tsc",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/cheerio": "^0.22.28",
"@types/node": "^16.0.0",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"concurrently": "^6.0.0",
"eslint": "^7.26.0",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"typescript": "^4.2.4",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"node-fetch": "^3.0.0"
}
}