-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "valclient.js",
"version": "1.2.0",
"description": "Valorant Client API Wrapper in NodeJS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"keywords": [
"typescript",
"valorant",
"valorant-api",
"api",
"wrapper",
"nodejs",
"riot",
"npm"
],
"scripts": {
"lint": "eslint src/**/*.ts --quiet --fix",
"test": "jest",
"prepare": "husky install",
"start": "cross-env NODE_ENV=development nodemon --watch src -r tsconfig-paths/register src/index.ts",
"update:types": "ts-node -r tsconfig-paths/register src/utils/updateTypes.ts && yarn lint",
"build": "ttsc -P ./tsconfig-build.json && ttsc -P ./tsconfig-cjs.json",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorwessel/valclient.js.git"
},
"author": "Igor Wessel",
"license": "MIT",
"bugs": {
"url": "https://github.com/igorwessel/valclient.js/issues"
},
"homepage": "https://github.com/igorwessel/valclient.js#readme",
"dependencies": {
"axios": "0.21.4",
"axios-cookiejar-support": "1.0.1",
"tough-cookie": "4.0.0"
},
"devDependencies": {
"@types/jest": "27.0.1",
"@types/node": "16.7.13",
"@types/tough-cookie": "4.0.1",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"@zerollup/ts-transform-paths": "1.7.18",
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"istanbul-badges-readme": "1.4.0",
"jest": "27.1.1",
"jest-mock-extended": "2.0.2-beta2",
"lint-staged": "11.1.2",
"nodemon": "2.0.12",
"prettier": "2.3.2",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"tsconfig-paths": "3.11.0",
"ttypescript": "1.5.12",
"typescript": "4.4.2"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.js": "eslint --cache --fix"
}
}