-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.07 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
{
"name": "pubg-api",
"version": "1.1.2",
"description": "An open-source wrapper for the official PlayerUnknown's Battleground API",
"main": "src/index.js",
"scripts": {
"test": "mocha --reporter spec",
"lint": "eslint src/**/*.js",
"prepublish": "npm run lint && npm test"
},
"keywords": [
"pubg",
"api",
"wrapper",
"js",
"nodejs",
"npm",
"package"
],
"author": "Alan Balbo",
"license": "ISC",
"dependencies": {
"https": "^1.0.0",
"rxjs": "^5.5.7",
"lodash": "^4.17.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wobow/pubg_api.git"
},
"files": [
"src",
"package.json",
"README.md"
],
"devDependencies": {
"eslint": "^4.18.2",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"minifier": "^0.8.1",
"mocha": "^5.0.4"
}
}