-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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": "stratz.js",
"version": "2.2.2",
"description": "A Node.js STRATZ REST API wrapper",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
}
},
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "npm run clean && npm run compile",
"build:docs": "npm run clean && npm run compile && npm run docs",
"docs": "rm -f ./DOCS.md && jsdoc2md ./lib/index.js --separators > DOCS.md",
"clean": "rm -rf ./lib",
"watch": "npm run build -- --watch src",
"test": "jest --silent",
"test:coverage": "jest --coverage",
"compile": "tsup ./src/index.ts --format cjs,esm --dts --outDir ./lib",
"prepare": "husky install",
"lint": "eslint ./src --ext ts --report-unused-disable-directives --max-warnings 0 && prettier \"./src/**/*.ts\" --check",
"lint:fix": "eslint ./src --ext .ts --report-unused-disable-directives --max-warnings 0 --fix",
"format:fix": "prettier \"./src/**/*.ts\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChocolateNao/stratz.js.git"
},
"keywords": [
"stratz",
"dota",
"dota2",
"wrapper",
"api",
"rest-api"
],
"author": "ChocolateNao (https://github.com/ChocolateNao)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChocolateNao/stratz.js/issues"
},
"homepage": "https://github.com/ChocolateNao/stratz.js#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^7.2.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}