-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "pubg.js",
"version": "3.9.0",
"description": "A powerful Playerunknown's Battlegrounds JavaScript API Wrapper",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run tests",
"lint": "eslint src *.js --fix",
"tests": "node test/index.js",
"webpack": "./node_modules/.bin/webpack --config webpack.config.js",
"docs": "./node_modules/.bin/jsdoc src src/matches src/playerseason README.md -t ./node_modules/minami && echo pubg.js.org > ./out/CNAME"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ickerio/pubg.js"
},
"keywords": [
"pubg",
"api",
"wrapper"
],
"author": "ickerio, Zaytt",
"license": "ISC",
"bugs": {
"url": "https://github.com/ickerio/pubg.jsissues"
},
"runkitExampleFilename": "docs/example.js",
"homepage": "https://github.com/ickerio/pubg.js#readme",
"dependencies": {
"axios": "^0.19.0",
"lodash.merge": "^4.6.1",
"lodash.omit": "^4.5.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"jsdoc": "^3.6.2",
"minami": "^1.2.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.11.0"
}
}