This repository has been archived by the owner on Sep 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"author": {
"name": "Alfie"
},
"dependencies": {
"cross-fetch": "^3.0.6"
},
"description": "Brawlhalla API Wrapper for Node.js, provided by corehalla.com.",
"keywords": [
"Brawlhalla",
"API",
"Wrapper",
"Corehalla"
],
"license": "ISC",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"name": "corehalla.js",
"scripts": {
"start": "webpack --mode=development --watch --progress",
"build": "webpack --mode=production && tsc",
"prepublishOnly": "webpack --mode=production && tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --watch --verbose",
"test:cov": "jest --coverage"
},
"version": "0.1.2",
"repository": {
"type": "git",
"url": "https://github.com/Corehalla/corehalla.js.git"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.14",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}