-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "rainbow-six-user-data",
"version": "1.0.3",
"description": "A module that fetch user statistics from Rainbow Six Siege using r6stats.com API.",
"main": "./lib/cjs/module.js",
"module": "./lib/module.js",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --config --ignore-path --write src/**/*.ts",
"prepublish": "npm run format && npm run lint:fix && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xxsource98/rainbow-six-user-data.git"
},
"author": "Xxsource98",
"license": "ISC",
"bugs": {
"url": "https://github.com/Xxsource98/rainbow-six-user-data/issues"
},
"homepage": "https://github.com/Xxsource98/rainbow-six-user-data#readme",
"devDependencies": {
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"prettier": "^2.6.1",
"typescript": "^4.5.5"
},
"files": [
"lib/"
],
"dependencies": {
"axios": "^0.25.0"
}
}