-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "namemcwrapper",
"version": "2.4.2",
"description": "ES6 Promise based wrapper for NameMC.com",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "tsc",
"build": "babel build --out-dir dist --copy-files",
"pretest": "npm run-script build",
"test": "mocha --reporter spec --timeout 180000 --delay",
"docs": "typedoc --out docs src/index.ts --gitRevision master",
"eslint:github-action": "eslint ./src/**/*",
"eslint:fix": "eslint ./src/**/* --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrZillaGold/NameMCWrapper.git"
},
"keywords": [
"wrapper",
"namemc",
"minecraft",
"name-mc",
"namemc api",
"namemcapi"
],
"author": "MrZillaGold <Pronin Egor | mrzillagold@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrZillaGold/NameMCWrapper/issues"
},
"homepage": "https://github.com/MrZillaGold/NameMCWrapper#readme",
"dependencies": {
"axios": "^0.27.2",
"cheerio": "1.0.0-rc.10",
"inspectable": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/plugin-syntax-import-assertions": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"mocha": "^10.0.0",
"typedoc": "^0.23.7",
"typescript": "^4.7.4"
}
}