-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.05 KB
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
{
"name": "api-tebex",
"version": "0.2.4",
"description": "A node.js library for interacting with the Tebex API",
"main": "node.js",
"typings": "node.d.ts",
"scripts": {
"build": "yarn clean:dist && webpack",
"build:docs": "yarn clean:docs && jsdoc -c .jsdoc.json",
"clean": "yarn clean:dist && yarn clean:docs",
"clean:dist": "rimraf node.js node.js.map node-dev.js node-dev.js.map",
"clean:docs": "rimraf docs",
"ci": "yarn clean && yarn lint && yarn test && yarn build && yarn build:docs",
"lint": "eslint tests/**/*.js lib/**/*.js",
"prepublishOnly": "yarn build",
"serve:docs": "yarn build:docs && http-server ./docs -c-1",
"test": "jest lib",
"test:integration": "jest tests --coverage=false"
},
"files": [
"node.js",
"node-dev.js",
"node.d.ts"
],
"keywords": [
"api",
"api-client",
"tebex",
"tebex-api",
"fivem",
"fivem-api",
"minecraft",
"minecraft-api"
],
"engines": {
"node": ">=10.0.0"
},
"author": "pichotm",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/PichotM/api-tebex.git"
},
"bugs": {
"url": "https://github.com/PichotM/api-tebex/issues"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@pixi/jsdoc-template": "^2.6.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsdoc": "^30.6.3",
"http-server": "^0.12.3",
"jest": "26.4.2",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^7.0.0",
"rimraf": "^3.0.2",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"axios": "^0.21.1"
}
}