-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 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
76
77
78
{
"name": "@raz1el/r6tab",
"version": "1.0.0",
"description": "R6Tabwire API Client for NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --detectOpenHandles --no-cache ./*",
"start": "node --unhandled-rejections=strict dist/index.js",
"build": "npm run clear && tsc -p tsconfig.prod.json",
"build:debug": "npm run clear && tsc",
"lint": "eslint -c .eslintrc.js --ext .js,.jsx,.ts,.tsx src",
"lint:log": "eslint --no-color -o logs/lint.log -c .eslintrc.js --ext .js,.jsx,.ts,.tsx src",
"clear": "rm -rf dist logs",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/raziEiL/r6tab.git"
},
"keywords": [
"r6tab",
"rainbow six",
"api",
"api client",
"tabstats",
"rainbow-six-siege",
"node",
"javascript",
"typescript"
],
"author": {
"name": "Denis Medvedev (raziEiL)",
"email": "mr.raz4291@gmail.com"
},
"license": "GPL-3.0",
"homepage": "https://github.com/raziEiL/r6tab#readme",
"files": [
"dist/**/*"
],
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@raz1el/util": "^1.0.5",
"axios": "^0.19.2"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unicorn": "^18.0.1",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"tslint": "^6.1.1",
"typescript": "^3.9.7"
}
}